about summary refs log tree commit diff
path: root/configs/shared/.emacs.d/wpc/keyboard.el
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2019-12-22T21·03+0000
committerWilliam Carroll <wpcarro@gmail.com>2019-12-24T15·21+0000
commitafcd663c7ca881de0cfe6de3589e4bcb80e8263b (patch)
tree6f2d01b0c6a3f63858dcfaa5413aaea7e4a942ea /configs/shared/.emacs.d/wpc/keyboard.el
parentebe67fc73d17b3f000138510cbe156ba45dc8dfd (diff)
Fix typo in keyboard configuration
I was missing a trailing comma in my xmodmap call. This rectifies that mistake.
Diffstat (limited to 'configs/shared/.emacs.d/wpc/keyboard.el')
-rw-r--r--configs/shared/.emacs.d/wpc/keyboard.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/shared/.emacs.d/wpc/keyboard.el b/configs/shared/.emacs.d/wpc/keyboard.el
index f9d13a8e41eb..ac778d1698d8 100644
--- a/configs/shared/.emacs.d/wpc/keyboard.el
+++ b/configs/shared/.emacs.d/wpc/keyboard.el
@@ -65,7 +65,7 @@
   "Swaps the caps lock and escape keys using xmodmap."
   (interactive)
   (shell-command "xmodmap -e 'remove Lock = Caps_Lock'")
-  (shell-command "xmodmap -e 'keysym Caps_Lock = Escape"))
+  (shell-command "xmodmap -e 'keysym Caps_Lock = Escape'"))
 
 (defun keyboard/inc-repeat-rate ()
   "Increment `keyboard/repeat-rate'."