[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/evil-escape f71394b38a 132/133: Add support for treemacs (
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/evil-escape f71394b38a 132/133: Add support for treemacs (#4) |
Date: |
Wed, 3 Jan 2024 21:59:59 -0500 (EST) |
branch: elpa/evil-escape
commit f71394b38ac438e1dbab6ffb5532aa1194882630
Author: Alexander Miller <alexanderm@web.de>
Commit: Jonas Bernoulli <jonas@bernoul.li>
Add support for treemacs (#4)
---
README.md | 1 +
evil-escape.el | 2 ++
2 files changed, 3 insertions(+)
diff --git a/README.md b/README.md
index bead440f1f..12a68a412a 100644
--- a/README.md
+++ b/README.md
@@ -46,6 +46,7 @@ Press quickly `fd` (or the 2-keys sequence of your choice) to:
- quit gist-list menu
- quit helm-ag-edit
- hide neotree buffer
+- hide treemacs buffer
- quit evil-multiedit
And more to come !
diff --git a/evil-escape.el b/evil-escape.el
index 7e5aff726a..3c839aaad6 100644
--- a/evil-escape.el
+++ b/evil-escape.el
@@ -49,6 +49,7 @@
;; - quit gist-list menu
;; - quit helm-ag-edit
;; - hide neotree buffer
+;; - hide treemacs buffer
;; - quit evil-multiedit
;; And more to come !
@@ -262,6 +263,7 @@ If any of these functions return non nil, evil escape will
be inhibited."
(string-equal "*helm-ag-edit*" (buffer-name)))
'helm-ag--edit-abort)
((eq 'neotree-mode major-mode) 'neotree-hide)
+ ((eq 'treemacs-mode major-mode) 'treemacs-quit)
(t 'evil-normal-state)))
(defun evil-escape--escape-emacs-state ()
- [nongnu] elpa/evil-escape 88b2cfbb38 128/133: Update url in commentary, (continued)
- [nongnu] elpa/evil-escape 88b2cfbb38 128/133: Update url in commentary, ELPA Syncer, 2024/01/03
- [nongnu] elpa/evil-escape 7966f4b1be 084/133: Add cl-lib dependency and provide a initial value to reduce., ELPA Syncer, 2024/01/03
- [nongnu] elpa/evil-escape d53c8930e8 091/133: Improve evil-repeat-info support but not quite right, ELPA Syncer, 2024/01/03
- [nongnu] elpa/evil-escape c80afe7335 099/133: Handle minibuffer in emacs-state as well, ELPA Syncer, 2024/01/03
- [nongnu] elpa/evil-escape 533e8a5649 095/133: Update README and bump to 3.10, ELPA Syncer, 2024/01/03
- [nongnu] elpa/evil-escape 5e7a4c873e 107/133: Add support for nil evil-escape-key-sequence, ELPA Syncer, 2024/01/03
- [nongnu] elpa/evil-escape 58ec625a94 104/133: custom handling for deft causes duplicate inserts, ELPA Syncer, 2024/01/03
- [nongnu] elpa/evil-escape 73b30bfd91 116/133: Use string-match-p over string-match, ELPA Syncer, 2024/01/03
- [nongnu] elpa/evil-escape ddb2348b40 073/133: Bump version to 3.02, ELPA Syncer, 2024/01/03
- [nongnu] elpa/evil-escape ce6982f7ce 125/133: Fix indentation, ELPA Syncer, 2024/01/03
- [nongnu] elpa/evil-escape f71394b38a 132/133: Add support for treemacs (#4),
ELPA Syncer <=