summarylogtreecommitdiffstats
path: root/emacs-flycheck-pos-tip.install
blob: 8a52ff9d8397214546e893f32b6589e13e47c1c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
post_install () {

cat << EOF

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

(require 'flycheck-pos-tip)
(with-eval-after-load 'flycheck
  (flycheck-pos-tip-mode))

==> Or, with use-package:

(use-package flycheck-pos-tip
  :after flycheck
  :config
  (flycheck-pos-tip-mode))

EOF
}

post_upgrade () {
	post_install $1
}