From afcd663c7ca881de0cfe6de3589e4bcb80e8263b Mon Sep 17 00:00:00 2001 From: William Carroll Date: Sun, 22 Dec 2019 21:03:22 +0000 Subject: Fix typo in keyboard configuration I was missing a trailing comma in my xmodmap call. This rectifies that mistake. --- configs/shared/.emacs.d/wpc/keyboard.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configs') 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'." -- cgit 1.4.1