+icomplete module
My own module for using icomplete, which has some sane 'evil' bindings and other such stuff.
This commit is contained in:
26
Doom/.doom.d/modules/private/icomplete/config.el
Normal file
26
Doom/.doom.d/modules/private/icomplete/config.el
Normal file
@@ -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)
|
||||
Reference in New Issue
Block a user