EXWM: Fix missing (interactive) in s-t binding

master
Pierre Neidhardt 2019-03-03 15:34:23 +01:00
parent f3a66adf8f
commit 00ff4895f7
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@
;;; Emacs mode shortcuts.
(if (not (fboundp 'helm-org-switch))
(exwm-input-set-key (kbd "s-t") (lambda () (find-file (car org-agenda-files))))
(exwm-input-set-key (kbd "s-t") (lambda () (interactive) (find-file (car org-agenda-files))))
(exwm-input-set-key (kbd "s-t") #'helm-org-switch)
(exwm-input-set-key (kbd "s-T") #'helm-org-switch-other-window))
(if (not (fboundp 'helm-eshell-switch))