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:
parent
2349b1daa4
commit
4cdbd9d19a
8
init.el
8
init.el
@ -638,8 +638,14 @@
|
|||||||
|
|
||||||
(use-package yasnippet
|
(use-package yasnippet
|
||||||
:ensure t
|
:ensure t
|
||||||
|
:demand
|
||||||
:config
|
: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
|
(use-package vala-snippets
|
||||||
:ensure t
|
:ensure t
|
||||||
|
Loading…
Reference in New Issue
Block a user