Using zsh 5.4.2, I am occasionally running into an error "_values:compvalues:11: not enough arguments". When it doesn't occur, instead, one of the kakoune sessions does not appear as part of autocompletion.
This fixes both problems for me by providing a description as described in http://zsh.sourceforge.net/Doc/Release/Completion-System.html#Completion-System. "The first non-option argument is used as a string to print as a description before listing the values. "
- `clean` has been renamed to `autoclean` (https://github.com/yarnpkg/rfcs/pull/52)
- added description (from `yarn help [command]`) to `cache`, `import` and `versions`
Apple renamed "Mac OS X" to "macOS" in 2016.
* Replace instances of "OSX"/"OS X"/etc. with "macOS" in comments to reflect the change.
* There are additional references to things like "osx" in functional code which are left unchanged.
* Grammatical changes due to the initial letter changing from a vowel to a consonant (o => m) in some places.
* Fix a unrelated minor grammatical issue.
There is a _go file in the zsh functions directory that would be found
first if you use OMZ with zsh-completions. This is an ancient file in
zsh and does not complete for the go executable either, but it is still
there on typical zsh distributions.
This change makes it such that zsh/OMZ/zsh-completions can work in
harmony, if one so chooses.
https://cmake.org/cmake/help/v3.3/variable/CMAKE_PREFIX_PATH.html
* some packages provide no Find${PROJECT}.cmake file but a ${PROJECT}Config.cmake instead
* providing these through CMAKE_MODULE_PATH just results in an error
message, which points out one should've used CMAKE_PREFIX_PATH instead.
* added common properties for makefile verbosity
* options are picked from https://stackoverflow.com/a/2673355
* explanation strings from the cmake documentation
This only handles the options. I never found a good way to get a
list of targets which would make it much more useful. But option
completion alone is useful and it falls back to file completion
so doesn't do any harm.