diff options
author | William Carroll <wpcarro@gmail.com> | 2017-06-01T14·26-0400 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2017-06-02T14·35-0400 |
commit | 7cf411fe0ff11451f10a14b66794faa6c760d183 (patch) | |
tree | ef42385670a23235b370bdf2035e2a32eb01dfec /emacs | |
parent | 23f4e84ada23fa17ca3c5a6bcab08a84cbb512b9 (diff) |
Remaps slate kbds
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/wc-helper-functions.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/wc-helper-functions.lisp b/emacs/wc-helper-functions.lisp index 601fa1a36338..986e031ecbdf 100644 --- a/emacs/wc-helper-functions.lisp +++ b/emacs/wc-helper-functions.lisp @@ -26,12 +26,12 @@ (define-key term-raw-map (kbd "s-v") 'term-paste)) -(defun wc/ansi-term-paste (&optional string) +(defun wc/ansi-term-paste (&optional string) "Paste into `ansi-term'." (interactive) (process-send-string (get-buffer-process (current-buffer)) - (if string string (current-kill 0))))) + (if string string (current-kill 0)))) (defun evil-window-vsplit-right () |