aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/holes-load.el
blob: 0c0a8b80326d78438b625abaaeb0534b1beb1bc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; To use holes-mode, require this file in your .emacs and add path to
; holes.el in the load-path of emacs

(autoload 'holes-mode "holes"
  "Minor mode for using \"holes\" in your buffers." t)
(autoload 'holes-set-make-active-hole "holes"
  "Makes a new hole and make it active." t)
(autoload 'holes-abbrev-complete "holes"
  "Completes an abbreviation, and replace #s ans @{}s by holes.")
(autoload 'holes-insert-and-expand "holes"
  "insert and expand an abbreviation, and replace #s ans @{}s by holes.")

(provide 'holes-load)