Markus Richter
28679cf7c3
remove last expl[@] strings and replace them with the generic "$@"
2018-11-06 20:56:19 +01:00
Markus Richter
6eda4d8276
fix family/handle/table completion, remove uneccessary expl
2018-11-06 00:54:25 +01:00
nicoulaj
5fdcec1bef
Merge pull request #547 from tony/improve-tmuxp-load
...
improve tmuxp load completions
2018-11-05 19:55:01 +01:00
Markus Richter
ecd02cf5ba
renamed file, documented some more functions
2018-11-05 16:37:10 +01:00
Markus Richter
0f0b1d8184
add fixes suggested by okapia and some more
2018-11-04 23:05:08 +01:00
Markus Richter
9aaf2e64fb
Add description/author header
2018-11-04 15:11:45 +01:00
mqus
d4d55235da
Add _nft (iptables successor) completion
...
Some things to note here:
1.: There are bugs in the code as I'm no expert on zsh completion *at all*. I just trial-and-error'd a big part of it.
2.: Some things are not done here (marked with a `TODO`), namely the statement syntax of some `nft add` commands.
3.: Some completions try to complete existing chain names/rule handles/table names. For this you either have to be root or use sudo AND enable the gain-privileges zstyle (otherwise this will not work)
4.: I also found the nft man page to be somewhat lacking so there might be some edge case completions which are plain wrong.
2018-11-04 15:01:52 +01:00
Julien Nicoulaud
f8cede57f0
_ansible in zsh replaces all our _ansible* compdefs
2018-11-04 14:41:31 +01:00
Julien Nicoulaud
9edc47d5a3
Delete some compdefs that have been included in zsh (thanks @okapia)
...
Command used, on a zsh 5.6.2 installation:
for def in src/*; { [[ -n $(find /usr/share/zsh/functions -name ${def:t}) ]] && git rm $def }
Closes #607
2018-11-04 14:36:19 +01:00
Julien Nicoulaud
c614accc90
#605 : conan: fix plural form confusion
2018-11-04 14:34:53 +01:00
Julien Nicoulaud
e11fbae88e
git ignore some IDE files
2018-11-04 14:27:35 +01:00
nicoulaj
a1b138c34e
Merge pull request #604 from Edhebi/patch-1
...
Follow to PR #601 : still one typo
2018-11-01 20:54:04 +01:00
Edhebi
5f34afa1bf
Follow to PR #601 : still one type
...
The previous PR#601 fixed "compabilty" on 3 lines over 4. The PR fixes the last one
2018-10-25 09:57:30 +02:00
Julien Nicoulaud
9384691702
README: fix links
2018-10-24 20:44:35 +02:00
Julien Nicoulaud
8ec8c8c5c6
tox: fix function not defined first time completion is called + simplify it
2018-10-24 20:32:56 +02:00
nicoulaj
ddda39de92
Merge pull request #600 from pseyfert/golang
...
[golang] add buildmode completion
2018-10-24 19:58:49 +02:00
nicoulaj
69c94a7a4e
Merge pull request #601 from Edhebi/patch-1
...
Fix typos in _trash-put
2018-10-24 19:58:22 +02:00
Edhebi
4c700530b7
Fix typos
...
Fixing "compabilty" to "compatibility"
2018-10-18 00:42:31 +02:00
Paul Seyfert
b03195e636
[golang] add buildmode completion
...
add the build modes from `go help buildmode` to the completion of
`go build -buildmode <TAB>`
2018-10-16 21:27:01 +02:00
nicoulaj
84a820a798
Merge pull request #588 from Eisfunke/master
...
Add completion script for wireguard's wg-quick
2018-10-13 23:45:08 +02:00
Julien Nicoulaud
c299511237
#505 : pg_restore accepts a file
2018-10-13 23:39:52 +02:00
Julien Nicoulaud
9a0dde3d49
#595 : chromium can open files too
2018-10-13 23:33:24 +02:00
Julien Nicoulaud
02479c2fb0
#533 : fix command positional substitution arguments conflicting with options
2018-10-13 23:23:34 +02:00
nicoulaj
53e2c3c22d
Merge pull request #599 from ralphcallaway/ralphcallaway-patch-1
...
Completions How To's Typo Fix So second _regex_arguments example works
2018-10-13 23:10:52 +02:00
Julien Nicoulaud
4235fe5d69
#533 : add tox completion
2018-10-13 23:07:51 +02:00
Julien Nicoulaud
5bef032398
Packages: fix broken links, add Slackware and NetBSD
2018-10-13 23:07:51 +02:00
Julien Nicoulaud
2a1350a60d
#591 : move CONTRIBUTING to root directory, README cleanup
2018-10-13 23:07:50 +02:00
Ralph Callaway
98cae97aa1
Fix typo
...
example wasn't working due to typo
2018-10-12 01:58:57 -04:00
nicoulaj
09ab969e20
Merge pull request #594 from mikkeloscar/update-golang-111
...
Update completetions for Go 1.11
2018-09-04 12:26:19 +02:00
Mikkel Oscar Lyderik Larsen
3875707119
Update completetions for Go 1.11
...
Updates the completions for Go 1.11 which introduced a new `go mod`
command.
https://groups.google.com/forum/#!topic/golang-announce/O7POXMK3xbM
Signed-off-by: Mikkel Oscar Lyderik Larsen <mikkel.larsen@zalando.de>
2018-09-04 09:31:23 +02:00
okapia
779da41063
Merge pull request #578 from pseyfert/cmake_c_flags
...
use CPPFLAGS completion for CMAKE_CXX_FLAGS completion
2018-08-29 23:05:15 +02:00
Paul Seyfert
34e36dfc9b
fixup based on review comment
2018-08-29 20:29:06 +02:00
Paul Seyfert
c0eedafd93
use CPPFLAGS completion for CMAKE_CXX_FLAGS completion
...
cmake -DCMAKE_*_FLAGS*=<TAB>
will invoke _gcc as if one completes
export CPPFLAGS=<TAB>
Given that _gcc doesn't distinguish between CFLAGS, CPPFLAGS, or
CXXFLAGS, neither do we here.
2018-08-29 20:26:38 +02:00
okapia
c97cb23593
Merge pull request #590 from daboross/patch-1
...
Fix kakoune completion not providing a description argument to _values
2018-08-29 16:19:33 +02:00
Nicolas Lenz
c4587d5cf7
Use built-in _path_files instead of sed
2018-08-26 21:16:26 +02:00
Nicolas Lenz
b97156b51e
Fix typo in wg-quick
2018-08-26 20:35:37 +02:00
Julien Nicoulaud
a617b745cf
Add github templates
2018-08-26 16:07:13 +02:00
David Ross
9a215c194c
Replace _values with compadd, and other cleanup recommended
...
Thanks @okapia!
2018-08-25 17:37:09 -07:00
Julien Nicoulaud
955645c22b
add conan completion (work in progress)
2018-08-26 01:08:15 +02:00
Julien Nicoulaud
8e5db9fcb1
#562 : rclone now ships its own completion ( f1f7e0e6f9
)
2018-08-26 01:07:30 +02:00
nicoulaj
f3b38922bf
Merge pull request #568 from kapsh/glances
...
glances: update existing arguments
2018-08-26 00:58:51 +02:00
nicoulaj
69d7166518
Merge pull request #572 from pseyfert/iwyu
...
WIP: adding include-what-you-use completion
2018-08-26 00:55:42 +02:00
nicoulaj
55bedff245
Merge pull request #584 from grimreaper/eax/completion/macports_port_add_select
...
_port: add some missing values
2018-08-26 00:47:12 +02:00
nicoulaj
3924ee7cc4
Merge pull request #583 from Robinhuett/ecdsautil
...
Added ecdsautils
2018-08-26 00:47:02 +02:00
nicoulaj
577e98372e
Merge pull request #579 from ybiquitous/update-nodejs-completion
...
Update Node.js completion to fit latest version
2018-08-26 00:43:06 +02:00
nicoulaj
94ad3f32ba
Merge pull request #576 from pseyfert/ccache
...
add ccache completion
2018-08-26 00:39:37 +02:00
nicoulaj
94e1d2be9b
Merge pull request #575 from ssiegel/improve-ansible-completion
...
Improve ansible completion
2018-08-26 00:37:58 +02:00
nicoulaj
eec18e681e
Merge pull request #570 from pseyfert/chromium
...
adding completion function for chromium (the browser)
2018-08-26 00:28:19 +02:00
nicoulaj
df4a398d0c
Merge pull request #565 from NiKoTron/master
...
add flutter.io cli tool completions
2018-08-26 00:19:53 +02:00
nicoulaj
742d2f1c08
Merge pull request #564 from Madh93/add-more-rspec-completions
...
Add more RSpec completions
2018-08-26 00:16:45 +02:00