diff options
author | dx <aryadevchavali1@gmail.com> | 2020-05-31 00:53:21 +0100 |
---|---|---|
committer | dx <aryadevchavali1@gmail.com> | 2020-05-31 00:53:21 +0100 |
commit | 2aa3f0d3a9e04c5f07d918e7f67377ecc8628efc (patch) | |
tree | b2c9bedd7840b3255f9bf69bc2427079c0d5f35a /Doom/.doom.d/modules/private/icomplete/config.el | |
parent | dcbf9b2191bf893015f13131ddd8626115d87eb2 (diff) | |
download | dotfiles-2aa3f0d3a9e04c5f07d918e7f67377ecc8628efc.tar.gz dotfiles-2aa3f0d3a9e04c5f07d918e7f67377ecc8628efc.tar.bz2 dotfiles-2aa3f0d3a9e04c5f07d918e7f67377ecc8628efc.zip |
+icomplete module
My own module for using icomplete, which has some sane 'evil' bindings
and other such stuff.
Diffstat (limited to 'Doom/.doom.d/modules/private/icomplete/config.el')
-rw-r--r-- | Doom/.doom.d/modules/private/icomplete/config.el | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Doom/.doom.d/modules/private/icomplete/config.el b/Doom/.doom.d/modules/private/icomplete/config.el new file mode 100644 index 0000000..02a2f5c --- /dev/null +++ b/Doom/.doom.d/modules/private/icomplete/config.el @@ -0,0 +1,26 @@ +;;; private/fido/config.el -*- lexical-binding: t; -*- + +(map! + :map icomplete-minibuffer-map + ;; unbind anything I want to use for useful stuff + "C-j" nil + "C-k" nil + "C-b" nil + "TAB" nil + + "C-j" #'icomplete-forward-completions + "C-k" #'icomplete-backward-completions + "C-n" #'icomplete-forward-completions + "C-p" #'icomplete-backward-completions + "TAB" #'icomplete-force-complete + "C-b" #'completions) + +(setq icomplete-separator "\t|\t") +(setq icomplete-in-buffer t) + +(defun +icomplete/M-x () + "M-x command that starts matching instantly" + (interactive) + (execute-extended-command "*")) + +(icomplete-mode +1) |