term: another hook needed for fish shell to display properly in Emacs 26

This commit is contained in:
Łukasz Pankowski 2019-12-16 21:12:05 +01:00
parent 12073bca35
commit 30a7ff1227

View File

@ -312,7 +312,10 @@
(use-package helm-mt
:bind (("C-c z" . helm-mt))
:hook (term-exec . toggle-truncate-lines))
;; hooks for fish shell (term-mode for Emacs 26 and term-exec for
;; Emacs 27)
:hook ((term-mode . toggle-truncate-lines)
(term-exec . toggle-truncate-lines)))
;;; ### Git ###