Documentation ¶
Overview ¶
Package zsh provides zsh completion
Index ¶
Constants ¶
View Source
const ( DEFAULT_STATE state = iota // Word starts with `"`. // Values need to end with `"` as well. // Weirdly regardless whether there are additional quotes within the word. QUOTING_ESCAPING_STATE // Word starts with `'`. // Values need to end with `'` as well. // Weirdly regardless whether there are additional quotes within the word. QUOTING_STATE // Word starts and ends with `"`. // Space suffix somehow ends up within the quotes. // `"action"<TAB>` // `"action "<CURSOR>` // Workaround for now is to force nospace. FULL_QUOTING_ESCAPING_STATE // Word starts and ends with `'`. // Space suffix somehow ends up within the quotes. // `'action'<TAB>` // `'action '<CURSOR>` // Workaround for now is to force nospace. FULL_QUOTING_STATE )
Variables ¶
View Source
var NamedDirectories = make(namedDirectories)
NamedDirectories provides rudimentary named directory support as these aren't expanded by zsh in the `${words}` provided to the compdef function
Functions ¶
func ActionRawValues ¶
ActionRawValues formats values for zsh
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.