2016-02-05 23:14:08 +01:00
|
|
|
|
2016-02-14 08:29:43 +01:00
|
|
|
#--------------------------------------------------------------------#
|
|
|
|
# Global Configuration Variables #
|
|
|
|
#--------------------------------------------------------------------#
|
2016-02-05 23:14:08 +01:00
|
|
|
|
|
|
|
# Color to use when highlighting suggestion
|
|
|
|
# Uses format of `region_highlight`
|
|
|
|
# More info: http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html#Zle-Widgets
|
|
|
|
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=8'
|
|
|
|
|
|
|
|
# Prefix to use when saving original versions of bound widgets
|
|
|
|
ZSH_AUTOSUGGEST_ORIGINAL_WIDGET_PREFIX=autosuggest-orig-
|
|
|
|
|
|
|
|
# Widgets that clear the suggestion
|
|
|
|
ZSH_AUTOSUGGEST_CLEAR_WIDGETS=(
|
|
|
|
history-search-forward
|
|
|
|
history-search-backward
|
|
|
|
history-beginning-search-forward
|
|
|
|
history-beginning-search-backward
|
2016-03-01 21:13:01 +01:00
|
|
|
history-substring-search-up
|
|
|
|
history-substring-search-down
|
2016-02-05 23:14:08 +01:00
|
|
|
up-line-or-history
|
|
|
|
down-line-or-history
|
|
|
|
accept-line
|
|
|
|
)
|
|
|
|
|
|
|
|
# Widgets that accept the entire suggestion
|
|
|
|
ZSH_AUTOSUGGEST_ACCEPT_WIDGETS=(
|
|
|
|
forward-char
|
|
|
|
end-of-line
|
|
|
|
vi-forward-char
|
|
|
|
vi-end-of-line
|
|
|
|
)
|
|
|
|
|
2016-02-20 14:52:21 +01:00
|
|
|
# Widgets that accept the entire suggestion and execute it
|
|
|
|
ZSH_AUTOSUGGEST_EXECUTE_WIDGETS=(
|
|
|
|
)
|
|
|
|
|
2016-02-05 23:14:08 +01:00
|
|
|
# Widgets that accept the suggestion as far as the cursor moves
|
|
|
|
ZSH_AUTOSUGGEST_PARTIAL_ACCEPT_WIDGETS=(
|
|
|
|
forward-word
|
|
|
|
vi-forward-word
|
|
|
|
vi-forward-word-end
|
|
|
|
vi-forward-blank-word
|
|
|
|
vi-forward-blank-word-end
|
|
|
|
)
|