branch: externals/ivy-hydra
commit db455019dc22a83e9699c087c86eea9248b9bce7
Author: Philippe Crama <[email protected]>
Commit: Oleh Krehel <[email protected]>
Add counsel-find-file action: find-file-literally
This action is sometimes useful (e.g. when opening huge files where
having another mode than fundamental-mode would slow down Emacs).
Fixes #2462
---
counsel.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/counsel.el b/counsel.el
index c77c5a9..b34158a 100644
--- a/counsel.el
+++ b/counsel.el
@@ -1875,6 +1875,7 @@ choose between `yes-or-no-p' and `y-or-n-p'; otherwise
default to
("x" counsel-find-file-extern "open externally")
("r" counsel-find-file-as-root "open as root")
("R" find-file-read-only "read only")
+ ("l" find-file-literally "open literally")
("k" counsel-find-file-delete "delete")
("c" counsel-find-file-copy "copy file")
("m" counsel-find-file-move "move or rename")