diff options
Diffstat (limited to 'lib/holes-load.el')
| -rw-r--r-- | lib/holes-load.el | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/holes-load.el b/lib/holes-load.el new file mode 100644 index 00000000..0c0a8b80 --- /dev/null +++ b/lib/holes-load.el @@ -0,0 +1,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) + |
