vimrc
This commit is contained in:
+39
@@ -0,0 +1,39 @@
|
||||
# GNU Readline main configuration file
|
||||
|
||||
set blink-matching-paren on
|
||||
set visible-stats on
|
||||
set mark-symlinked-directories on
|
||||
|
||||
## completion case insensitive and ambiguous
|
||||
set show-all-if-ambiguous on
|
||||
set skip-completed-text on
|
||||
set colored-completion-prefix on
|
||||
set colored-stats on
|
||||
set completion-ignore-case on
|
||||
set completion-prefix-display-length 15
|
||||
set completion-query-items 20
|
||||
set menu-complete-display-prefix on
|
||||
|
||||
# display characters with the eighth bit set directly
|
||||
set input-meta on
|
||||
set output-meta on
|
||||
set convert-meta off
|
||||
|
||||
## ARROW up, down for history search
|
||||
"\e[A":history-search-backward
|
||||
"\e[B":history-search-forward
|
||||
|
||||
# CTRL + Right, Left for word suppressing
|
||||
"\e[1;5C": forward-word
|
||||
"\e[1;5D": backward-word
|
||||
|
||||
# ALT + BACKSPACE for left line suppressing
|
||||
"\e[3;3~": kill-line
|
||||
# ALT + DELETE for right line suppressing
|
||||
"\e\C-?": backward-kill-line
|
||||
|
||||
# CTRL + BACKSPACE for left word suppressing
|
||||
"\C-H": backward-kill-word
|
||||
|
||||
# SHIFT + DELETE for whole line suppressing
|
||||
"\e[3;2~": kill-whole-line
|
||||
Reference in New Issue
Block a user