spacemacs icon indicating copy to clipboard operation
spacemacs copied to clipboard

Emacs tabs feature shadowing existing key binfings

Open practicalli-johnny opened this issue 3 years ago • 0 comments

From Emacs 27.1 onward tab bar functionality is built in and it seems that Evil normal key bindings are over-riding the existing keybindings for eyebrowse-next-window-config and eyebrowse-previous-window-config

Originally raised this issue https://github.com/syl20bnr/spacemacs/issues/13677 but it seems no one is going to do anything about fixing it

The following work around removed the Emacs tabs binding that shadows the Spacesmacs key binding

  (with-eval-after-load 'evil-maps
    (when (featurep 'tab-bar)
      (define-key evil-normal-state-map "gt" nil)
      (define-key evil-normal-state-map "gT" nil)))

practicalli-johnny avatar Jun 17 '22 18:06 practicalli-johnny