From aae7ca258b3b113068d457460a3ceade69cf8436 Mon Sep 17 00:00:00 2001 From: Ben Johnson Date: Wed, 14 Feb 2018 00:34:28 -0800 Subject: [PATCH] Fix keybinding Both flycheck-mode and toggle-frame-fullscreen seem to be bound to "SPC t f", which means that only the second binding gets applied and there's no binding to toggle flycheck. This PR simply changes the fullscreen binding to capital F. --- modules/private/default/+bindings.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/private/default/+bindings.el b/modules/private/default/+bindings.el index 317453f44..07437e334 100644 --- a/modules/private/default/+bindings.el +++ b/modules/private/default/+bindings.el @@ -286,7 +286,7 @@ :desc "Flyspell" :n "s" #'flyspell-mode :desc "Flycheck" :n "f" #'flycheck-mode :desc "Line numbers" :n "l" #'doom/toggle-line-numbers - :desc "Frame fullscreen" :n "f" #'toggle-frame-fullscreen + :desc "Frame fullscreen" :n "F" #'toggle-frame-fullscreen :desc "Indent guides" :n "i" #'highlight-indentation-mode :desc "Indent guides (column)" :n "I" #'highlight-indentation-current-column-mode :desc "Impatient mode" :n "h" #'+impatient-mode/toggle