Fix typo in keyboard configuration

I was missing a trailing comma in my xmodmap call. This rectifies that mistake.
This commit is contained in:
William Carroll 2019-12-22 21:03:22 +00:00
parent ebe67fc73d
commit afcd663c7c

View file

@ -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'."