Remove TAB binding of yas-expand

It caused me more trouble than not.  I will find a better binding for it later.
This commit is contained in:
Gergely Polonkai 2016-11-23 09:49:33 +01:00
parent 2349b1daa4
commit 4cdbd9d19a
1 changed files with 7 additions and 1 deletions

View File

@ -638,8 +638,14 @@
(use-package yasnippet
:ensure t
:demand
:config
(yas-global-mode 1))
(yas-global-mode 1)
:bind
;; Remove TAB binding to yas-expand. It causes more harm than good.
(:map yas-minor-mode-map
("TAB" . nil)
([(tab)] . nil)))
(use-package vala-snippets
:ensure t