blob: 02a2f5c9ef830d07d4b259bc1b4332c548fafd89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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)
|