blob: 8e9dfe9b3313e4a217cce814b69e4a53572ee07b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
cat << EOF
==> Put the followings in your \$HOME/.emacs file to use auto-complete-nxml
;; auto-complete-nxml
(require 'auto-complete-nxml)
;; Keystroke for popup help about something at point.
(setq auto-complete-nxml-popup-help-key "C-:")
;; Keystroke for toggle on/off automatic completion.
(setq auto-complete-nxml-toggle-automatic-key "C-c C-t")
;; If you want to start completion manually from the beginning
(setq auto-complete-nxml-automatic-p nil)
EOF
}
|