summarylogtreecommitdiffstats
path: root/emacs-j-mode-git.install
blob: 25d8cf0ad25b50c47554b75cc7d1c337dcbbd3b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
post_install() {
cat << EOM
;; Add this to your emacs config
(autoload 'j-mode "j-mode.el" "Major mode for editing J files" t)

;; Add for detection of j source files if the auto-load fails
(add-to-list 'auto-mode-alist '("\\.ij[rstp]$" . j-mode))
EOM
}

post_upgrade() {
	post_install
}