• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..15-Jan-2018-

Makefile.inH A D03-May-2022637 3021

READMEH A D02-Oct-2015384 1411

gretl.el.bottomH A D04-Oct-201638.8 KiB1,2161,101

gretl.el.topH A D16-Sep-20163.3 KiB10279

README

1;; Add the following to your ~/.emacs file to get the full
2;; benefit of gretl-mode
3
4(setq auto-mode-alist
5      (cons '("\\.inp$" . gretl-mode) auto-mode-alist))
6(autoload 'gretl-mode "gretl" nil t)
7(add-hook 'gretl-mode-hook
8          (lambda ()
9            (abbrev-mode 1)
10            (auto-fill-mode 1)
11            (if (eq window-system 'x)
12                (font-lock-mode 1))))
13
14