minor improvements
[distro-setup] / .inputrc
1 # case insensitive completion
2 set completion-ignore-case on
3 # - to _ insensitive completion
4 set completion-map-case on
5
6 # todo: explain this :)
7 set menu-complete-display-prefix on
8
9 # for readline-complete.el
10 set bell-style none
11 set completion-display-width 0
12
13 # preserve cusror location in history items.
14 # unfortunately, this does not work when using vi-mode and j or k
15 # I would like to make a patch to fix this.
16 set history-preserve-point on
17
18
19 # show all completions all the time
20 set show-all-if-ambiguous on
21 # this does a partial complete if it can before showing completions
22 set show-all-if-unmodified on
23
24
25 # nice in bash, but messes up completion in emacs shell
26 #set visible-stats on
27 set visible-stats off
28
29 # turn off pager for completion
30 set page-completions off
31
32 # to answer this question in bash-completion README:
33 # Q. When completing on a symlink to a directory, bash does not append
34 # the trailing / and I have to hit <Tab> again. I don't like this.
35 set mark-symlinked-directories on
36
37 # i had this set in the past to make c-u work, but it doesn't seem to be needed now.
38 # not sure if it affected any other keybinds.
39 #set bind-tty-special-chars off
40
41
42
43 # key bindings:
44
45 # note c-i/m/h are unusable, duplicating tab, enter, ctrl-del or something
46 # C-x would be hard to rebind because emacs.
47
48 "\C-q": exchange-point-and-mark
49 "\C-w": kill-region
50 "\C-e": yank-last-arg
51 "\C-a": insert-comment
52 "\C-s": yank-nth-arg
53
54 "\C-f": menu-complete
55 "\C-b": menu-complete-backward
56
57 # arrow keys. for other terminals, see http://unix.stackexchange.com/questions/10806/how-to-change-previous-next-word-shortcut-in-bash
58 # this can be conditioned based on the term, see the term keyword in
59 # bash's readline manual section
60 #"\eOc": forward-word
61 #"\eOd": backward-word
62 "\e[1;5C": forward-word
63 "\e[1;5D": backward-word
64
65 Control-Space: set-mark
66
67 # default is C-M-e which kinda sucks
68 "\C-t": shell-expand-line
69
70 # ctrl-delete
71 "\e[3;5~": kill-word
72
73 # default is C-x C-e
74 "\C-g": edit-and-execute-command
75
76 # default is C-y
77 "\C-v": yank
78
79 # default is C-M-y
80 "\C-\M-v": yank-pop
81
82 # by default, not bound
83 "\C-p": dabbrev-expand # similar menu-complete, except for commands in history
84
85 # default is C-q. this matches emacs.
86 "\C-\M-q": quoted-insert
87
88 # default is C-x C-u
89 "\C-d": undo
90
91
92
93
94
95
96
97
98
99 ####### commented out stuff ###########
100
101 # vi mode settings and observatoins
102 # double pound indicates it is only commented because I am not using vi mode
103 ##set editing-mode vi
104
105 # completion from history. how cool
106 ##Control-SPACE: dynamic-complete-history
107
108 # this is just kinda cool to show off:
109 ##"\M-{": complete-into-braces
110
111
112 # by default / and ? do a non-incremental search. This changes that.
113 # the downside is that you have to type ctrl-v then / to get the actual char.
114 ##set keymap vi-command
115 ##"/": reverse-search-history
116 ##"?": forward-search-history
117 # make g go to the end of history. emacs has some meta key for this,
118 # but we are not using g, so why not.
119 ##"g": end-of-history
120 # yank-pop from emacs mode, hacked into vim-mode.
121 ##"o": vi-yank-pop
122 # vim uses m<letter> to set a mark and `<letter> to return to a mark specified
123 # by letter. On a single line, this doesn't make much sense. So I'm using the
124 # emacs way of a single mark. In vi-mode, you can do dm<letter> to delete a
125 # mark. Emacs has its own delete and copy region commands. I'd like to hack the
126 # source code to make d` delete to the mark and y` yank to the mark. I'm
127 # leaving it for now, we will see how this works out in actual emacs when I get
128 # my vi keybinds setup there.
129 ##"`": exchange-point-and-mark
130 ##"v": set-mark
131 ##"m": kill-region
132 ##"-": yank-last-arg
133 ##"_": yank-nth-arg
134
135
136
137 # w and b are normally always tripping over punctuation as word separators, I
138 # think having W and B act like that is a bit more efficient default. And this
139 # "shell" functions see words as the shell does, which is cool.
140 # These are also only included as bash commands.
141 # this is enables in .bashrc, after testing if bash version is > 4
142 # "b": shell-backward-word
143 # "w": shell-forward-word
144 # here we are with the unwrapped word, back and end functions, (that should get fixed).
145 #"w": vi-fWord
146 #"W": vi-fword
147 #b: vi-bWord
148 #B: vi-bword
149 #"e": vi-eWord
150 #"E": vi-eword
151 #
152 #unfortunately thre is another bug: binding for example W to vi-fword makes it
153 #show that its bound to that and also vi-fWord, and the upper case one is what
154 # word.now
155 #happens
156 #
157 # I added a hack to the readline sources to reverse the upper/lowercase check on these
158
159 # I would like to make a patch to make the command 'shell-end-word'
160
161
162
163 # for some reason, binding the '=' key doesn't work.
164
165 # for some reason, the documentation of the same commands seems to be more
166 # extensive in bash. There are extra commands listed in the bash documentation
167 # too, but so far they seem to be shell specific.
168
169 # "p": yank
170 #set keymap vi-insert
171 #
172 #notes:
173 #
174 #normal mode has this, which doesn't make sense. 'i' still works fine. whatever.
175 # vi-insertion-mode (not bound)
176 #
177 # normal mode default keybinds also have this:
178 # vi-fword (not bound)
179 # vi-fWord (not bound)
180 #
181 # vi-bword (not bound)
182 # vi-bWord (not bound)
183 #
184 # Looking in the readline sources, those are the real forward and back
185 # commands, but they are wrapped in this: and its corresponding back version.
186 # "W": vi-next-word
187 # "w": vi-next-word
188 # What this wrapper does is check for upper/lower case, do terminal ding if its
189 # at the eol, and handle negative counts prefixed to it.
190 #
191 # This command:
192 # "_": vi-yank-arg
193 # works like this emacs command:
194 # yank-last-arg
195 # except it puts you in insert mode afterwards, so you can't make successive
196 # calls to go to earlier last arguments.
197 #
198 # Emacs has a kill ring. yank means paste. yank-pop means go down the kill
199 # ring, this only has an effect after a yank, or a yank-pop that was after a
200 # yank. Vim also has a kill ring plugin, that has a yank-pop, and a yank-push,
201 # to browse forward in the kill ring. In emacs there is no forward function,
202 # you simply undo the yank. In bash vi-mode, undoing the yank undoes it
203 # entirely, not each item in the kill ring. This isn't a big deal. In both
204 # emacs and vi-mode, the kill ring stays in the new position regardless of the
205 # undo. Vi-mode does not allow you to yank-pop after the vi pastes 'p' and 'P',
206 # 1 problem is the cursor is in a little different position than an emacs yank.
207 # I think I can modify the readline sources fairly easily to make this
208 # possible.
209 # There is an interesting incompatibility between vi and emacs mode. Emacs mode
210 # always has the block be 1 square after the cursor. Same in vi-insert, but in
211 # vi-normal, its on top of the character and can't go beyond the last
212 # character, so if you do a yank at the last character in vi-normal, it does
213 # not put the cursor after the last character like a normal yank because it
214 # cant, and then you can't yank-pop because the cursor is in the wrong spot.
215 #
216 #