about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2017-06-01T14·26-0400
committerWilliam Carroll <wpcarro@gmail.com>2017-06-02T14·35-0400
commit7cf411fe0ff11451f10a14b66794faa6c760d183 (patch)
treeef42385670a23235b370bdf2035e2a32eb01dfec
parent23f4e84ada23fa17ca3c5a6bcab08a84cbb512b9 (diff)
Remaps slate kbds
-rw-r--r--configs/.slate.js4
-rw-r--r--emacs/wc-helper-functions.lisp4
2 files changed, 4 insertions, 4 deletions
diff --git a/configs/.slate.js b/configs/.slate.js
index 5738ecea4687..21557111bc78 100644
--- a/configs/.slate.js
+++ b/configs/.slate.js
@@ -48,10 +48,10 @@ var focus_apps = {
   e: 'Emacs',
   t: 'iTerm2',
   m: 'Messages',
-  p: 'Spotify',
+  s: 'Spotify',
   c: 'Google Chrome',
   l: 'LimeChat',
-  s: 'Slack',
+  k: 'Slack',
 };
 
 
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 (&amp;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 ()