From 1ed9155f89956310eb0cfce59f95e6f3e2ecbcd2 Mon Sep 17 00:00:00 2001 From: Eric Freese Date: Mon, 14 Mar 2016 17:25:09 -0600 Subject: [PATCH] Add Suggestion Strategy section to Configuration section of Readme. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index a72ea01..442baa6 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,14 @@ You may want to override the default global config variables after sourcing the Set `ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE` to configure the style that the suggestion is shown with. The default is `fg=8`. +### Suggestion Strategy + +Set `ZSH_AUTOSUGGEST_STRATEGY` to choose the strategy for generating suggestions. There are currently two to choose from: + +- `default`: Chooses the most recent match. +- `match_prev_cmd`: Chooses the most recent match whose preceding history item matches the most recently executed command ([more info](src/strategies/match_prev_cmd.zsh)). + + ### Widget Mapping This plugin works by triggering custom behavior when certain [zle widgets](http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html#Zle-Widgets) are invoked. You can add and remove widgets from these arrays to change the behavior of this plugin: