diff options
Diffstat (limited to 'emacs/.emacs.d/wpc/keyboard.el')
-rw-r--r-- | emacs/.emacs.d/wpc/keyboard.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/.emacs.d/wpc/keyboard.el b/emacs/.emacs.d/wpc/keyboard.el index ec50cabd2719..91f17faa12fd 100644 --- a/emacs/.emacs.d/wpc/keyboard.el +++ b/emacs/.emacs.d/wpc/keyboard.el @@ -51,7 +51,7 @@ (rate keyboard/repeat-rate) (delay keyboard/repeat-delay)) "Use xset to set the key-repeat RATE and DELAY." - (prelude/start-process + (prelude-start-process :name "keyboard/set-key-repeat" :command (string/format "xset r rate %s %s" delay rate))) @@ -65,7 +65,7 @@ (defun keyboard/swap-caps-lock-and-escape () "Swaps the caps lock and escape keys using xmodmap." (interactive) - ;; TODO: Ensure these work once the tokenizing in prelude/start-process works + ;; TODO: Ensure these work once the tokenizing in prelude-start-process works ;; as expected. (start-process "keyboard/swap-caps-lock-and-escape" nil "/usr/bin/xmodmap" "-e" "remove Lock = Caps_Lock") |