S-Tab is interpreted as <backtab> in linux

This commit is contained in:
Diego Berrocal 2015-04-09 14:06:59 -04:00 committed by syl20bnr
parent e444f962bc
commit de4b3cf60d
1 changed files with 3 additions and 1 deletions

View File

@ -339,6 +339,8 @@ HPADDING is the horizontal spacing betwee the content line and the frame border.
;;this feels like the wrong place to put these
(add-hook 'spacemacs-mode-hook (lambda ()
(local-set-key [tab] 'widget-forward)
(local-set-key [S-tab] 'widget-backward)))
(local-set-key [S-tab] 'widget-backward)
(local-set-key [backtab] 'widget-backward)
))
(provide 'core-spacemacs-buffer)