summaryrefslogtreecommitdiff
path: root/pcr/emacs-auto-complete/emacs-auto-complete.install
blob: 6885f2cbae7e315b9d13a57f7220f7718aee25b9 (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 'auto-complete-config)
(ac-config-default)

==> Or, with use-package:

(use-package auto-complete-config
  :config
  (ac-config-default))

EOF
}

post_upgrade () {
	post_install $1
}