2016-02-06 06:14:08 +08:00
|
|
|
|
2016-02-14 15:29:43 +08:00
|
|
|
#--------------------------------------------------------------------#
|
|
|
|
# Global Configuration Variables #
|
|
|
|
#--------------------------------------------------------------------#
|
2016-02-06 06:14:08 +08: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-
|
|
|
|
|
2016-03-02 03:45:55 +08:00
|
|
|
ZSH_AUTOSUGGEST_STRATEGY=default
|
|
|
|
|
2016-02-06 06:14:08 +08:00
|
|
|
# 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-02 04:13:01 +08:00
|
|
|
history-substring-search-up
|
|
|
|
history-substring-search-down
|
2018-03-24 05:04:21 +08:00
|
|
|
up-line-or-beginning-search
|
|
|
|
down-line-or-beginning-search
|
2016-02-06 06:14:08 +08: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-04-16 03:33:35 +08:00
|
|
|
vi-add-eol
|
2016-02-06 06:14:08 +08:00
|
|
|
)
|
|
|
|
|
2016-02-20 21:52:21 +08:00
|
|
|
# Widgets that accept the entire suggestion and execute it
|
|
|
|
ZSH_AUTOSUGGEST_EXECUTE_WIDGETS=(
|
|
|
|
)
|
|
|
|
|
2016-02-06 06:14:08 +08:00
|
|
|
# Widgets that accept the suggestion as far as the cursor moves
|
|
|
|
ZSH_AUTOSUGGEST_PARTIAL_ACCEPT_WIDGETS=(
|
|
|
|
forward-word
|
2017-05-21 04:00:43 +08:00
|
|
|
emacs-forward-word
|
2016-02-06 06:14:08 +08:00
|
|
|
vi-forward-word
|
|
|
|
vi-forward-word-end
|
|
|
|
vi-forward-blank-word
|
|
|
|
vi-forward-blank-word-end
|
2018-05-15 00:59:08 +08:00
|
|
|
vi-find-next-char
|
|
|
|
vi-find-next-char-skip
|
2016-02-06 06:14:08 +08:00
|
|
|
)
|
2016-07-18 17:55:19 +08:00
|
|
|
|
2016-08-01 09:35:30 +08:00
|
|
|
# Widgets that should be ignored (globbing supported but must be escaped)
|
|
|
|
ZSH_AUTOSUGGEST_IGNORE_WIDGETS=(
|
|
|
|
orig-\*
|
|
|
|
beep
|
|
|
|
run-help
|
|
|
|
set-local-history
|
|
|
|
which-command
|
|
|
|
yank
|
2017-12-25 05:46:20 +08:00
|
|
|
yank-pop
|
2016-08-01 09:35:30 +08:00
|
|
|
)
|
|
|
|
|
2016-07-18 17:55:19 +08:00
|
|
|
# Max size of buffer to trigger autosuggestion. Leave undefined for no upper bound.
|
|
|
|
ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE=
|
2017-01-28 06:18:26 +08:00
|
|
|
|
2017-01-30 01:39:07 +08:00
|
|
|
# Pty name for calculating autosuggestions asynchronously
|
|
|
|
ZSH_AUTOSUGGEST_ASYNC_PTY_NAME=zsh_autosuggest_pty
|