From 2ff7f4899414cc5608dc429c65a37c46f7892704 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 4 Apr 2018 07:41:10 -0400 Subject: [PATCH] config/default: fix yasnippet TAB keybinds in tty emacs --- modules/config/default/+bindings.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/config/default/+bindings.el b/modules/config/default/+bindings.el index ebd85a5e5..1b772e441 100644 --- a/modules/config/default/+bindings.el +++ b/modules/config/default/+bindings.el @@ -656,7 +656,9 @@ [delete] #'+snippets/delete-forward-char-or-field) (:map yas-minor-mode-map :ig "" yas-maybe-expand - :v "" #'yas-insert-snippet)) + :v "" #'yas-insert-snippet + :ig "TAB" yas-maybe-expand + :v "TAB" #'yas-insert-snippet)) ;; --- Major mode bindings --------------------------