From e395ff0eb0d92befa554fc3142dfb2d8bb8bebec Mon Sep 17 00:00:00 2001 From: Colin Woodbury Date: Fri, 24 Feb 2023 12:57:53 +0900 Subject: [PATCH] fix(fortran): account for the `.F90` extension In the Elder Days, it was common to give Fortran files the extensions of `.FOR` or later `.F90`. The major modes for Fortran don't automatically detect this conversion. The former was already accounted for in Doom's module, but not the latter. This commit rectifies this. --- modules/lang/fortran/config.el | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/lang/fortran/config.el b/modules/lang/fortran/config.el index a512d940f..310ee4b10 100644 --- a/modules/lang/fortran/config.el +++ b/modules/lang/fortran/config.el @@ -5,6 +5,7 @@ (use-package! f90 :defer t + :mode ("\\.F90" . f90-mode) :config ;; --- Compilation --- ;; ;; Used by `compile' (SPC c c)