From 236bbab194d9ce93fd303201f32f395a73fa30ea Mon Sep 17 00:00:00 2001 From: Martin Plattner Date: Sun, 12 Apr 2020 21:10:11 +0200 Subject: [PATCH] docs: set multiple patterns for ZSH_AUTOSUGGEST_COMPLETION_IGNORE --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 06d26e3..a3bd9e6 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ Set `ZSH_AUTOSUGGEST_HISTORY_IGNORE` to a glob pattern to prevent offering sugge ### Skipping completion suggestions for certain cases -Set `ZSH_AUTOSUGGEST_COMPLETION_IGNORE` to a glob pattern to prevent offering completion suggestions when the buffer matches that pattern. For example, set it to `"git *"` to disable completion suggestions for git subcommands. +Set `ZSH_AUTOSUGGEST_COMPLETION_IGNORE` to a glob pattern to prevent offering completion suggestions when the buffer matches that pattern. For example, set it to `"git *"` to disable completion suggestions for git subcommands. Multiple patterns are separated by `|`, eg. `rsync *| scp *` to disable (slow) completions for remote paths. **Note:** This only affects the `completion` suggestion strategy.