15 lines
518 B
Text
15 lines
518 B
Text
|
# Some common Readline config settings.
|
||
|
|
||
|
set colored-stats on # Turn on completion colors.
|
||
|
set colored-completion-prefix on # Color the typed completion prefix.
|
||
|
|
||
|
# Some config settings that only work in Clink.
|
||
|
|
||
|
$if clink
|
||
|
set search-ignore-case on # Case insensitive history searches.
|
||
|
set completion-auto-query-items on # Prompt before showing completions if they'll exceed half the screen.
|
||
|
$endif
|
||
|
|
||
|
# Add your keybindings here...
|
||
|
\C-F: complete
|
||
|
\C-G: clink-insert-suggested-line
|