summarylogtreecommitdiffstats
path: root/emacs-buffer-move.install
blob: 213a850ef0b4a14ec0d067b60b3de33b2cb8ebcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
post_install () {

cat << EOF

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

(require 'buffer-move)

==> Bind the functions as you please:

(global-set-key (kbd "<C-S-up>")     'buf-move-up)
(global-set-key (kbd "<C-S-down>")   'buf-move-down)
(global-set-key (kbd "<C-S-left>")   'buf-move-left)
(global-set-key (kbd "<C-S-right>")  'buf-move-right)

==> Or do the above with use-package:

(use-package buffer-move
  :bind ("C-S-<up>"    . buf-move-up)
        ("C-S-<down>"  . buf-move-down)
        ("C-S-<left>"  . buf-move-left)
        ("C-S-<right>" . buf-move-right))

EOF
}

post_upgrade () {
	post_install $1
}