[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
with-eval-after-load with 'fortran and 'f90
From: |
michael-franzese |
Subject: |
with-eval-after-load with 'fortran and 'f90 |
Date: |
Sat, 29 May 2021 11:05:13 +0200 |
Working with fortran on emacs includes both fortran and f90 constructs
to handle both "fixed form" and "free form". What does one have to do
to handle both instances.
(defun fortran-hide-keytrigger ()
"todo"
(define-key fortran-mode-map
(kbd "H-o c") #'outline-hide-entry))
(defun f90-hide-keytrigger ()
"todo"
(define-key f90-mode-map
(kbd "H-o c") #'outline-hide-entry))
(with-eval-after-load 'fortran
(fortran-view-keytrigger))
(with-eval-after-load 'f90
(f90-view-keytrigger))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- with-eval-after-load with 'fortran and 'f90,
michael-franzese <=