diff options
| author | David Shepherd <davidshepherd7@gmail.com> | 2017-03-17 13:40:30 +0000 |
|---|---|---|
| committer | David Shepherd <davidshepherd7@gmail.com> | 2017-03-17 13:40:30 +0000 |
| commit | 4064f8fb402a08bdef19ab739ecc571ad4bf7ace (patch) | |
| tree | 192838fbbd982e953e6fd9b5952995117a547fdd | |
| parent | Avoid calling vc-root-dir when it doesn't exist (diff) | |
| download | emacs-terminal-here-4064f8fb402a08bdef19ab739ecc571ad4bf7ace.tar.gz | |
Add missing autoloads
| -rw-r--r-- | terminal-here.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/terminal-here.el b/terminal-here.el index 9ba5e32..137c5b0 100644 --- a/terminal-here.el +++ b/terminal-here.el @@ -54,6 +54,7 @@ function taking a directory and returning such a list." (default-directory dir)) (apply #'start-process process-name nil term-command))) +;;;###autoload (defun terminal-here-launch () "Launch a terminal in the current working directory. @@ -62,7 +63,7 @@ changed it by running `cd'." (interactive) (terminal-here-launch-in-directory default-directory)) - +;;;###autoload (defun terminal-here-project-launch () "Launch a terminal in the current project root. |
