summarylogtreecommitdiffstats
path: root/emacs-which-key.install
blob: 380a2d9c3bc0d4eb2736bd4db91d2ebf87527d8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
post_install () {

cat << EOF

==> Add this code to your .emacs file to use the mode:

(require 'which-key)
(which-key-mode 1)

==> Or, with use-package:

(use-package which-key
  :config
  (which-key-mode 1))

EOF
}

post_upgrade () {
	post_install $1
}