Johannes Altmanninger
4ed22246c3
completions/gem: do not execute completion description
2020-11-29 06:07:00 +01:00
Marcel Hellwig
c7dc2c5a58
add completion for icdiff
...
icdiff is a diff command that uses colors by default and is an advances
version of the original diff command
https://github.com/jeffkaufman/icdiff
2020-11-24 19:25:51 +01:00
Milan Zink
f1a5fa82a0
Adding 'dnf versionlock' completions
2020-11-23 21:34:07 -08:00
Fabian Homborg
2e55e34544
Reformat
2020-11-22 14:39:48 +01:00
Mahmoud Al-Qudsi
6c8c8bf819
[zfs] Dynamically complete possible zfs property values
...
Use the man pages to dynamically generate possible completions for `zfs
set property=` payloads.
[ci skip] // Does that even work for GitHub actions?
2020-11-21 11:05:00 -06:00
Akatsuki Rui
df4114fb93
homectl.fish: fix Expected argument for option a
...
And a mistake space in description
[ci skip]
2020-11-20 23:08:50 +01:00
Érico Rolim
036ed36887
share/completions/ls: remove double whitespace.
...
Small typo in the description for one of the options.
2020-11-13 14:34:42 +01:00
Érico Rolim
943ead2598
share/completions: fix non-standard capitalization.
...
Use "Installed package" instead of "Installed Package".
2020-11-13 14:34:42 +01:00
Mahmoud Al-Qudsi
6bd4f52b0d
[zfs] Optimize enumeration of snapshots
...
Only generate the list of snapshots when
a) the argument must be a snapshot and nothing else, or
b) the argument as typed contains a literal @, or
c) a snapshot is a valid completion and there is only one dataset
matching the argument as entered.
Unfortunately, it seems the `zfs` command itself is extremely primitive
and doesn't support listing snapshots by dataset so when we need to
generate completions, we end up needing to enumerate all snapshots
(ever) across all datasets. I'd be very happy to be proven wrong, but I
think the only other way would be manually parse `zdb` output.
See #7472
2020-11-12 22:24:29 -06:00
Shun Sakai
36337fc45d
Add completions for julia
2020-11-09 00:41:38 +09:00
Sean Wei
ca0f5686ff
Fix typo
2020-10-31 13:27:05 +01:00
Jan-Jaap Korpershoek
4b74fbf1b7
Make mysql completions work with log-in ( #7397 )
...
Complete databases using credentials specified on the commandline.
2020-10-30 18:34:23 +01:00
Mahmoud Al-Qudsi
3471db51c8
[completions] Add completions for pidof
...
[ci skip]
2020-10-30 11:16:22 -05:00
Clément Martinez
5a0bc0a516
Add bluetoothctl completions
2020-10-30 16:38:26 +01:00
Akatsuki Rui
f73808a0fa
Add completions for homect ( #7435 )
...
systemd-homed control tool
based on the systemd v246.6-1 manpage
2020-10-30 04:25:54 +01:00
Akatsuki Rui
d9b39b0d51
hostnamectl.fish: new completion
...
systemd-hostnamed control tools
2020-10-28 19:38:45 +01:00
Akatsuki Rui
9910bdf07a
coredumpctl.fish: new completion
...
systemd-coredump control tools
2020-10-28 19:38:45 +01:00
Akatsuki Rui
91d6e50ed8
bootctl.fish: new completion
...
systemd-boot control tools
2020-10-28 19:38:45 +01:00
Akatsuki Rui
745c2c6383
timedatectl.fish: add missing 2 commands
...
timesync-status
show-timesync
and some missing options
2020-10-28 19:38:45 +01:00
Fabian Homborg
0259b29a09
completions/cdh: Only shorten ~ if the token starts with one
...
Works around #4570
Also keep order like it always wanted.
[ci skip]
2020-10-28 18:18:06 +01:00
Mahmoud Al-Qudsi
c560240abc
[zpool] Improve ZFS completions
...
Do not show devices already part of a zpool on calls to `zpool add`
and the converse.
2020-10-25 21:51:34 -05:00
Clément Martinez
cbc40842e2
Complete pipenv run
2020-10-25 17:18:42 -05:00
Johannes Altmanninger
b633b443ba
fixup! completions/git: handle "1 .A" files
2020-10-17 07:45:22 +02:00
Johannes Altmanninger
14855de95a
completions/git: handle "1 .A" files
...
Fixes #7403
[ci skip]
2020-10-16 22:11:01 +02:00
Fabian Homborg
2a6547dd7c
completions/mysql: Complete database name
...
Gosh this interface is awful - we really really need to strip the
weird ascii table and the "Database" header.
[ci skip]
2020-10-12 19:50:20 +02:00
Mahmoud Al-Qudsi
3f0e2ef1dc
[openssl] Support openssl 1.1.0 completions
2020-10-10 11:53:57 -05:00
Johannes Altmanninger
863b4700f8
Use builtin command in spago completions, add to changelog
2020-10-10 13:11:53 +02:00
matoruru
d544cda937
Add completions/spago.fish
2020-10-10 13:07:27 +02:00
Johannes Altmanninger
a635d78976
competions/env: only invoke subcommand completions once
...
This prevents a seemingly infinite loop in
fish -c 'alias ssh "env ssh"; complete -C "ssh "'
It still prints "maximum recursion depth exceeded", but a follow-up commit
will work around that.
Fixes #7389
2020-10-10 09:24:49 +02:00
Johannes Altmanninger
f917211f3b
completions/ssh: history --max=n might be better than head -n
2020-10-10 09:24:49 +02:00
Johannes Altmanninger
1173e8bda4
Clarify that some complete calls just need a command with no user-defined completion
2020-10-10 09:24:49 +02:00
Joni Salmi
f845f267bd
umount.fish Add long flags and fix long description in completion #6981
2020-10-03 17:16:39 -07:00
Johannes Altmanninger
f758d39535
string pad: handle padding characters of width > 1
...
If the padding is not divisible by the char's width without remainder,
we pad the remainder with spaces, so the total width of the output is correct.
Also add completions, changelog entry, adjust documentation, add examples
with emoji and some tests. Apply some minor style nitpicks and avoid extra
allocations of the input strings.
2020-09-27 21:59:15 +02:00
Johannes Altmanninger
46746b4b26
completions/git: offer commit ranges for range-diff
...
A match made in heaven!
2020-09-27 21:59:15 +02:00
Johannes Altmanninger
e9582c41b2
Remove __fish_complete_external_command
...
It's no longer used.
2020-09-25 19:33:01 +02:00
Johannes Altmanninger
618705285d
completions/git: support ... range notation
...
https://git-scm.com/docs/gitrevisions#_revision_range_summary
2020-09-25 19:33:01 +02:00
Johannes Altmanninger
2a95b283ee
completions/git: complete only right commit if cursor is beyond the ".."
...
This enables completion for the right part of a range in many cases, like
`git log HEAD~10..`.
2020-09-25 19:33:01 +02:00
Mahmoud Al-Qudsi
533957fc2e
[apt] Add --with-new-pkgs completion
...
[ci skip]
2020-09-22 21:52:47 -05:00
Fabian Homborg
a3e20a4d38
Don't use abbreviated long options
...
"function --argument" is not a thing, it's "--argument-names". This only
accidentally works because our getopt is awful and allows abbreviated
long options.
Similarly, one argparse test used "--d" instead of "-d" or "--def".
2020-09-19 11:47:41 +02:00
exploide
ca730cf714
added completions for micro
2020-09-18 19:41:44 +02:00
Johannes Altmanninger
07c8608034
Fix make -j description
2020-09-17 18:44:54 +02:00
Mahmoud Al-Qudsi
304649acc6
[zfs] Add completions for new dataset prefix
...
[ci skip]
2020-09-16 14:37:59 -05:00
Mahmoud Al-Qudsi
bf31333622
[ffmpeg] Prevent -codec from matching -codec:[vas]
...
This was preventing the narrowing of matching completions.
[ci skip]
2020-09-07 16:52:47 -05:00
Mahmoud Al-Qudsi
2a4289dcd1
[ffmpeg] Fix variable name in __fish_ffmpeg_complete_regex
...
[ci skip]
2020-09-07 16:52:47 -05:00
Joost-Wim Boekesteijn
0cec12c6c0
ffprobe completions: show_stream -> show_streams
...
This should be `show_streams` instead of `show_stream` according to:
31b6b6685e
:/doc/ffprobe.texi#l218
2020-09-07 18:52:08 +02:00
Mahmoud Al-Qudsi
4331face4a
[vips] Add vips completions
...
Just a skeleton completion file, but the list of available
actions/completions is at least dynamically generated (there's a lot of
them, they are impossible to remember, and they depend on build
options).
[ci skip]
2020-09-04 21:40:27 -05:00
Mahmoud Al-Qudsi
fe6fb23f43
[ffmpeg] Add -f formats completions
...
[ci skip]
2020-09-04 13:43:26 -05:00
Fabian Homborg
1041e59c5b
fixup! Do actually use the correct command
...
Sorry!
2020-09-04 16:59:08 +02:00
Fabian Homborg
0ae37ac83a
Add alias completions
...
Fixes #7305
2020-09-04 16:58:41 +02:00
Fabian Homborg
bfb5b28d0f
Let command, jobs and type take --query
instead of --quiet
...
Now command, jobs, type, abbr, builtin, functions and set take `-q` to
query for existence, but the long option is inconsistent.
The first three use `--quiet`, the latter use `--query`. Add `--query`
to the first three, but keep `--quiet` around.
Fixes #7276 .
2020-09-04 16:55:09 +02:00
Mahmoud Al-Qudsi
91b2edd51d
[apt] Add --no-install-recommends
...
[ci skip]
2020-09-03 21:47:21 -05:00
Mahmoud Al-Qudsi
326fd8d750
[cargo] Add dynamic --package completions
...
[ci skip]
2020-09-03 13:41:37 -05:00
Akatsuki
4f0f5daea9
go.fish: add some missing options
...
also fix long descriptions #6981
2020-09-02 20:58:29 +02:00
Shun Sakai
244feee692
Add completions for some missing GLib's tools ( #7300 )
2020-09-01 05:15:23 +02:00
Mahmoud Al-Qudsi
c1cb462854
[ffmpeg] Complete some popular codec-specific options
2020-08-30 22:23:25 -05:00
Mahmoud Al-Qudsi
010db9e7be
[ffmpeg] Complete filter graphs
...
Dynamically generate a list of supported filters and transmogrify the
typed out filter graph into a fish completion.
[ci skip]
2020-08-30 22:23:25 -05:00
Mahmoud Al-Qudsi
3d5e1a061c
[ffmpeg] Add enumeration of pixel formats
...
[ci skip]
2020-08-30 22:23:25 -05:00
Mahmoud Al-Qudsi
280e99467d
[ffmpeg] Enumerate codecs for numbered streams
...
* This adds support for enumerating codecs after, e.g., -c✌️ 0
* (Also adds support for indeterminate codecs without a/s/v specified)
[ci skip]
2020-08-30 22:23:25 -05:00
Mahmoud Al-Qudsi
0d3f4db33a
[cargo] Use filesystem for --example completions
...
`cargo run --example` no longer lists examples and never listed examples
that were not built.
2020-08-29 17:06:33 -05:00
Akatsuki
f88d7dd312
btrfs.fish: fix long descriptions
2020-08-28 20:10:12 +02:00
exploide
167a96fdeb
corrected grep completions
2020-08-24 20:28:46 +02:00
Daniel Bengtsson
23f9373d26
Fix the description for ping.
...
Fix the long description for ping.
2020-08-24 19:31:48 +02:00
Tom Dunlap
dc411b373d
Remove "go run" from commands with exclusive args
...
`go run` compiles and runs a go program passing along the trailing args to the compiled program. Limiting `go run` to only complete *.go files means that if you are running a go file that takes a file path as a command line argument, you frustratingly cannot use tab completion.
2020-08-21 20:40:23 +02:00
Daniel Bengtsson
9ffaade0db
Fix the long description for ansible.
...
Maybe it's not necessary to display the default path here.
2020-08-20 21:40:11 +08:00
Charles Gould
bb23385baa
completions: add missing options for history builtin
2020-08-20 20:15:56 +08:00
Johannes Altmanninger
eb59d4eb14
Run fish_indent on share/**.fish
2020-08-17 17:40:28 +02:00
Colin Woodbury
a0b46e6204
Update Aura completions
2020-08-13 00:29:55 +02:00
Johannes Altmanninger
46a69d6b90
Simplify prime-run completions
2020-08-10 20:46:07 +02:00
oriko1010
8b02a78887
Add completion for prime-run
2020-08-10 20:44:20 +02:00
Johannes Altmanninger
9c327b19a6
Fix extra or missing newlines at end of file in our fish scripts
...
New fish_indent does that too, so this will make any future reformatting
diffs smaller.
Done using either of:
perl -pi -e 'undef $/; s/\n*$/\n/' share/**.fish
kak -n -f '<a-/>\n*<ret>d' share/**.fish
2020-08-09 23:53:46 +02:00
Johannes Altmanninger
918c62863e
Fix typo
2020-08-09 23:53:46 +02:00
Johannes Altmanninger
b7bd7e9916
Clean up some __fish_complete_suffix usage
...
Also don't cd in pine completions.
2020-08-08 22:56:54 +02:00
Fabian Homborg
be9d17b08a
help: Add the other pages
2020-08-07 21:06:16 +02:00
Johannes Altmanninger
d7ccc475cf
Cleanup __fish_complete_subcommand
...
The external-commands-only completion was briefly added in 3.1.0 and removed
in 3.1.1 (see #6798 ), which means we can remove some dead code.
Maybe we should just remove __fish_complete_external_command - it could break
users, but then again, we don't really have a way to stop people from starting
to use this deprecated function. The underscores ought to communicate that
this is function is private to fish but that is not enforced.
2020-08-06 21:24:26 +02:00
Allen Sobot
54823c9243
Implement XBPS completions ( #7239 )
2020-08-05 20:01:19 +02:00
Daniel Kravetz
7a77907b62
Update k3d
completions ( #7232 )
2020-08-01 13:41:44 +02:00
ridiculousfish
1c2323e76f
Use dashes instead of underscores pervasively in tutorial anchors
...
This fixes some broken help completions.
2020-07-31 12:10:16 -07:00
Johannes Altmanninger
233945b58b
completions/git.fish: fix completions for "git config"
...
gui.fontui can be like "-family ..."
2020-07-25 18:53:24 +02:00
Shun Sakai
25e9a758ad
Add completions for p7zip
2020-07-24 17:42:44 +02:00
Stefan Tatschner
d4fafc15ca
completions: Remove -f from pacman -U
...
pacman -U is intended to be used with (among others) files like this:
# pacman -U ./linux-headers-5.6.2.arch1-2-x86_64.pkg.tar.zst
Thus, let's enable file path completion for this kind of operation.
2020-07-24 19:49:20 +08:00
Daniel Kravetz
0f78700f6b
Update share/completions/k3d.fish
...
Co-authored-by: Gokul Soumya <gokulps15@gmail.com>
2020-07-16 15:11:40 -07:00
Daniel Kravetz Malabud
da16e8c6b3
Add k3d
completions
2020-07-16 15:11:40 -07:00
Mahmoud Al-Qudsi
50e2a8dd72
[dnf] Fall back to dnf repolist
when no sqlite3
...
[ci skip]
2020-07-08 11:24:29 -05:00
Shun Sakai
d24a14744c
Update apk-tools completions ( #7171 )
...
* Update apk-tools completions
Add completions of options of it's subcommands.
The completions of deprecated options is unimplemented.
* Fix installed package listing for apk-tools
An error occurs when the local cache does not exist, so fixed this.
2020-07-05 18:22:36 -05:00
Mahmoud Al-Qudsi
79d6710db4
fixup! Add udevadm completions
...
[ci skip]
2020-07-04 15:49:47 -05:00
Gokul Soumya
7e2a067f53
Add completions for mpc ( #7169 )
2020-07-04 19:46:19 +02:00
Mahmoud Al-Qudsi
de47a096e8
Add udevadm completions
...
[ci skip]
2020-07-01 09:27:20 -05:00
Gokul Soumya
3f210acdff
Add completions for yadm ( #7100 )
2020-07-01 00:34:00 +02:00
Mahmoud Al-Qudsi
9846328b41
[xinput] Provide completions for device properties
...
Also support specifying devices and properties by name, not just id.
[ci skip]
2020-06-29 22:09:53 -05:00
Mahmoud Al-Qudsi
46587b47c4
Add completions for synclient
...
[ci skip]
2020-06-29 13:03:48 -05:00
Daniel Bengtsson
05abd0ed68
Fix long description in completion.
...
Simplify the description sudo for the option l. I think it's sufficient.
Fixes : #6981
2020-06-29 09:58:02 -05:00
Mahmoud Al-Qudsi
da21ab5892
[xinput completions] Support devices with : in name
...
[ci skip]
2020-06-28 23:03:03 -05:00
Clément Martinez
5da3a95451
Add git diff --staged
completion
2020-06-26 18:26:50 -05:00
Fabian Homborg
149a0b98af
Another formatting run
...
I really kinda hate how insistent clang-format is to have line
breaks *IFF THE LINE IS TOO LONG*.
Like... lemme just add a break if it looks better, will you?
But it is the style at this time, so we shall tie an onion to our
belt.
2020-06-24 20:43:56 +02:00
Fabian Homborg
c21a3b9d71
Break up lines over 1000 characters
...
Yeah, these are just excessive.
In case you are wondering: 2812 characters was the longest line in all
of fish.
2020-06-24 20:42:03 +02:00
Gokul Soumya
e41404eed3
Improve git config completions ( #7150 )
...
* completions/git: Show all accepted values with git config
Finally closes #3812 .
Acceptable values are generated using `git help --config`
* completions/git: Show config value as description for git config
* completions/git: Handle multiline config values
When completing `git config` only display the first
line of config value as description if it is
multiline, appended with an ellipsis.
2020-06-24 20:07:25 +02:00
Fabian Homborg
9ae880f6ac
Comment *why* adb needs its redirections hand-fed
...
[ci skip]
2020-06-23 09:02:26 +02:00
Erutuon
2b6ce30a70
Fix redirection in adb shell
...
`adb` shell by default sends stderr from the command to stdout, so that `adb pull nonexistent<tab>` will show the error message from the `find` command. `>` must be escaped so that redirection is done inside the command executed by `adb shell`.
2020-06-23 08:59:02 +02:00
Gokul
c7a8e35bfc
completions/function: Update missing completions
...
- Complete signals with --on-signal
- Complete variables with --on-variable and --inherit-variable
- Complete event handlers with --on-event
- Complete commands with --wraps
- Add `complete` spec for --inherit-variable
2020-06-22 17:27:57 +02:00
Clément Martinez
1d1a2802ca
Add completion for systemctl --failed
2020-06-22 17:24:15 +02:00
Fabian Homborg
d8e5dfbb51
completions/dnf: Only offer the packagename
...
Removing the extraneous cruft.
Really, this should just be using its database properly.
Fixes #7118 .
2020-06-20 19:56:33 +02:00
Oscar Tin Lai
eb4f86710d
Add support for git-* command auto-completion ( #7075 )
...
* add support for git custom command completion
* small fixups
* remove autogenerated path from sourcing git-* completions
2020-06-20 18:35:10 +02:00
wayou
424e658d16
Add completions for deno
2020-06-20 18:31:57 +02:00
Daniel Bengtsson
dd1a26588a
Fix long description in completion.
...
Simplify the description, I think it's sufficient like this.
Fixes : #6981
2020-06-20 18:18:45 +02:00
Fabian Homborg
ee0d13a552
completions/set: Stop "hiding" dunder-prefixed variables
...
This was intended to stop showing the user "unimportant" variables,
but it just didn't complete them entirely, even if the current token
starts with a dunder (or `fish` of all things!).
Because completions sort `_` last, let's just complete these always
and let the user filter them.
2020-06-20 09:51:29 +02:00
Gokul
dde7ee9c7d
Add completions for github's gh tool
2020-06-17 20:27:20 +08:00
Gokul
9b10636824
Make completion descriptions for feh shorter
...
Strikes off feh in #6981 .
2020-06-15 21:55:47 +08:00
Shun Sakai
ffaf969e6e
Add completions for apk-tools
...
Completion of options for each subcommand is not implemented.
2020-06-14 19:23:49 +02:00
Maciek Borzecki
47200a8abf
completions/snap: workaround snap interfaces deprecation notice
...
The `snap interfaces` command prints out a deprecation notice to stderr. This breaks the completion
support for interfaces, connect and disconnect commands like so:
```
$ snap connect <TAB>error: no interfaces found
error: no interfaces found
...
'snap interfaces' is deprecated; use 'snap connections'.
'snap interfaces' is deprecated; use 'snap connections'.
'snap interfaces' is deprecated; use 'snap connections'.
error: no interfaces found
error: no interfaces found
'snap interfaces' is deprecated; use 'snap connections'.
```
Ultimately, the snap command completion should switch to `snap connections`. However, for now try to
workaround the notice by redirecting stderr.
Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com>
2020-06-14 19:22:37 +02:00
Shun Sakai
991389603c
Add completions for xxHash
2020-06-14 19:22:01 +02:00
Fabian Homborg
983f9eaa50
completions/apt: Let autoremove take packages
...
Fixes #7095
[ci skip]
2020-06-08 17:43:23 +02:00
Gokul
413a6aec98
Add completions for create_ap
2020-06-08 16:57:57 +02:00
Charles Gould
3692d63188
completions: shorten fzf descriptions
2020-06-04 18:24:11 +02:00
Charles Gould
0f4ed5b6b8
completions: shorten base64 descriptions
2020-06-04 18:24:11 +02:00
Charles Gould
fd2eb26ee3
completions: fix typo for mktemp
2020-06-04 18:24:11 +02:00
Alexander Sieg
af2d19bde0
completions: add hikari completion ( #7083 )
...
* completions: add hikari completion
* requested changes by code reviewer
2020-06-04 18:22:25 +02:00
Jason
4dff15b74e
kdeconnect-cli completions: ignore stderror ( #7074 )
...
* kdeconnect-cli completions: ignore error messages
* squash this please
2020-06-03 16:12:52 +02:00
Fabian Homborg
f25f15fd69
completions: Fix leftover "^" redirections
2020-06-02 21:43:32 +02:00
Jason
fd7bb14cf2
completions: update xrandr ( #7065 )
...
* completions: update xrandr
Adds new options from new version of xrandr
* xrandr: remove version checks
2020-05-30 12:11:26 +02:00
Charles Gould
dcf4d671c2
completions: fish_add_path
2020-05-30 10:09:21 +02:00
Jason
f041daecc6
completions: update python3
2020-05-28 17:42:00 +02:00
Donovan
bc2eb383d4
Funcsave with --directory option ( #7041 )
...
* funcsave: add option --directory
Signed-off-by: Donovan Jean <commit@dkrm.dev>
* funcsave: fix synopsis
Signed-off-by: Donovan Jean <commit@dkrm.dev>
* funcsave: fix completion
Signed-off-by: Donovan Jean <commit@dkrm.dev>
* funcsave: fix error message
Signed-off-by: Donovan Jean <commit@dkrm.dev>
* funcsave: fix parameter expansion
Signed-off-by: Donovan Jean <commit@dkrm.dev>
2020-05-27 20:13:44 +02:00
Jason
fb57a98aef
Shorten python3 completion descriptions
2020-05-27 20:12:48 +02:00
Fabian Homborg
46068cd257
completions/unzip: Stop filtering suffixes
...
It's unhelpful quite often.
See #7040 .
2020-05-27 19:35:17 +02:00
Jason Nader
65dde5b55a
Fallback to the slower --list-devices if device not immediately available
2020-05-24 20:19:19 +02:00
Jason Nader
68a1f2b20a
completions: speed up kdeconnect-cli device discovery
2020-05-24 20:19:19 +02:00
Johannes Altmanninger
6746060c14
Run fish_indent on all fish files in share/
2020-05-19 21:15:39 +02:00
Johannes Altmanninger
c54ee22c46
Refactor: remove unnecessary exports
2020-05-19 21:15:11 +02:00
Johannes Altmanninger
3819696091
Fix Kakoune completions
2020-05-19 21:15:11 +02:00
Charles Gould
b673f32b93
Add fish debugging examples
2020-05-19 21:07:33 +02:00
Shun Sakai
cc039e29ce
Add completions for Docutils
2020-05-19 21:02:55 +02:00
Fabian Homborg
43df5ba828
completions: Stop checking for command existence
...
Since 4414d5c888
(in fish 3.0.0) we
don't autoload completions if the command doesn't exist.
So there is no need to check inside the scripts anymore.
Whats more, a few (like pip and cabal) checked `command -q` instead of
`type -q`, meaning they'd fail if someone used a function instead of a
command of that name.
If the *command* actually needs to exist, checks like that are still
warranted, like in `npm` where aliasing it to `nvm` is popular.
A teensy additional bit: Make `sysctl -w` the same as `sysctl
--write`. That description was bogus.
2020-05-18 20:48:36 +02:00
Jason Nader
3cfcbe0975
completions: shotern atom
descriptions
2020-05-18 18:54:21 +02:00
Fabian Homborg
495cbb185f
completions/zpool: Use --inherit-variable
...
The local-exported variable will have disappeared by the time the
function is called.
"-V"/"--inherit-variable" is meant for something like this.
Fixes #7011
2020-05-16 23:02:47 +02:00
Johannes Altmanninger
e03c375ee3
Purge remnants of process expansion, document {fish,last}_pid
2020-05-16 11:58:12 +02:00
Johannes Altmanninger
f9447dc72f
help.fish: fix help for the separate completion page
2020-05-16 11:58:12 +02:00
Fabian Homborg
62f1ed0b5e
completions/git: More files for git commit
...
Fixes #7009 .
2020-05-15 20:26:07 +02:00
Johannes Altmanninger
49c5f96470
Use set -l to force use of a local variable
...
Bare set overwrites a global/universal variable if it exists.
2020-05-15 08:25:07 +02:00
Johannes Altmanninger
fe6c76d058
Read into local variables in some completions
...
Otherwise these might modify global or universal vars.
2020-05-15 07:14:54 +02:00
Atanas Yankov
bb458c7186
Add some missing journalctl completions ( #6989 )
2020-05-15 06:58:11 +02:00
Shun Sakai
3ee4c139b3
Add completions for Sphinx
2020-05-13 20:31:01 -07:00
Shun Sakai
230dbae0b9
Add completions for cmark
2020-05-13 20:31:01 -07:00
Shun Sakai
ed4dd1dd4d
Add completions for Asciidoctor
2020-05-13 20:31:01 -07:00
Akatsuki
46c253b9d6
completions/set: add --path and --unpath
...
Add missing options:
--path causes the specified variable to be treated as a path variable, meaning it will automatically be split on colons, and joined using colons when quoted (echo "$PATH") or exported.
--unpath causes the specified variable to not be treated as a path variable. Variables with a name ending in "PATH" are automatically path variables, so this can be used to treat such a variable normally.
[ci skip]
2020-05-13 20:28:35 -07:00
Jason Nader
90c89c877f
Use short flag for --description for consistency in code base
2020-05-08 22:58:52 +02:00
Ron Gebauer
54f3fbbf8c
Fix issue if md5sum is used instead of md5 ( #6958 )
...
* Fix issue if md5sum is used instead of md5
Both have a different output which results in different array sized
Signed-off-by: Ron Gebauer <ron.gebauer@raytion.com>
* Add feedback
Signed-off-by: Ron Gebauer <ron.gebauer@raytion.com>
2020-05-07 21:02:22 +02:00
Charles Gould
bd472ececc
Add fish_trace to special variable completions
2020-05-03 21:20:24 +08:00
Fabian Homborg
1988bd2579
completions/git: Only use first line of alias as the description
...
This was a weird one. We split the aliases correctly even with
multiple lines, but then broke it all again when we just printed the
description.
Note that it would be possible to use `string split0` here, but since
anything longer than a line is likely too long for a description
anyway we don't bother.
Fixes #6946 .
2020-04-26 08:49:01 +02:00
exploide
c0542727c4
added completions for metasploit commands
...
- msfconsole
- msfdb
- msfvenom
2020-04-25 09:30:09 +02:00
Jason
bd44c3a5cb
Shorten descriptions
2020-04-25 09:29:42 +02:00
Fabian Homborg
47677dfe95
Merge #6788
...
Completions update
2020-04-25 09:29:01 +02:00
Ron Gebauer
d256ff84f7
Improve gradle completion ( #6864 )
...
* Improve gradle completion a lot
Signed-off-by: Ron Gebauer <ron.gebauer@raytion.com>
2020-04-25 09:22:07 +02:00
Kid
6022d216cb
Update Yarn completions ( #6821 )
...
* Update `yarn global` command
* Add descriptions
2020-04-25 09:21:05 +02:00
239
4d596a8f1d
Merge branch 'master' into completions-update
2020-04-23 14:01:42 +02:00
Jason Nader
f66285d7a1
dogfood string split -f
2020-04-20 22:39:48 +02:00
Fabian Homborg
3f95440f26
completions: Use commandline -opc, not just -o
...
`commandline -o` tokenizes *the entire commandline buffer*.
See #6922 .
2020-04-20 19:43:01 +02:00
Charles Gould
2421eb6180
docs: Add completions for fish_key_reader
2020-04-19 07:06:31 +02:00
exploide
8e418f5205
updated su completions
2020-04-18 10:54:06 +02:00
Jason Nader
85a8deabe9
Run fish_indent
on all files
2020-04-18 10:53:11 +02:00
Fabian Homborg
157469038f
completions/duply: Stringify
...
This used a hardcoded "/bin/ls" for unknown reasons.
For one that's unnecessary, for another we don't want to parse string.
Use globs instead.
2020-04-18 10:29:18 +02:00
Fabian Homborg
6004d04da6
completions/rmmod: Stop hardcoding lsmod location
...
No idea what that was supposed to accomplish to begin with.
Fixes #6912
2020-04-18 10:26:55 +02:00
David Adam
021679b17c
completions/nc.traditional: add missing fish suffix to file
...
Noted in
https://github.com/fish-shell/fish-shell/pull/6873#issuecomment-614290625
2020-04-16 23:17:02 +08:00
Benjamin Kellermann
de9f4cb252
add completion for netcat
...
- implement the most common netcat variants on Linux
- nc.openbsd
- nc.traditional
- nc/netcat tries to guess which netcat is currently used
2020-04-13 23:45:40 +02:00
Benjamin Kellermann
0a40a6d551
add completion for nmap
2020-04-13 23:45:40 +02:00
Johannes Altmanninger
671b941b52
Fix ninja target completions without the -C flag
2020-04-13 22:56:22 +02:00
exploide
82b811281d
added completions for groups (coreutils)
2020-04-13 22:56:22 +02:00
exploide
ee180988d1
sftp completions
2020-04-11 13:24:35 +02:00
Shun Sakai
4f60693037
Add completions for Zopfli
2020-04-11 13:13:56 +02:00
xnumad
af5a9cf88e
It's wget --bind-address
...
Fixes typo
2020-04-09 23:49:27 +08:00
Artur Juraszek
33bc2bc312
Allow unzip versions not patched by Debian to enjoy .{jar,aar} completions
...
A minor follow-up to #6866 (e658a88ab0
).
These file types should be properly handled by other unzip flavors too,
regardless of Debian's/non-Linux Unixes' idiosyncrasies.
2020-04-07 22:47:38 +02:00
Thom Chiovoloni
e658a88ab0
Support .jar
and .aar
files in unzip
completions
...
I've been dealing with these a lot recently (android dev...), and it's
pretty annoying that unzip completions don't recognize them (They're
just zip files with a weird file extension).
2020-04-06 19:12:03 +02:00
Johannes Altmanninger
89c4ff9eae
Fix some inconsistencies in docs
2020-04-04 19:19:50 +02:00
Johannes Altmanninger
fd18cba4bc
Add completions for builtin wait
2020-04-04 19:19:50 +02:00
Jason Nader
30459b053f
more dogfood
2020-04-04 15:30:09 +02:00
Jason Nader
7cb1d3a646
Add string split --fields
2020-04-04 15:30:08 +02:00
Johannes Altmanninger
4884a4080e
completions: pass the correct args to git and ninja
2020-04-02 09:44:15 +02:00
exploide
67eaefeb82
added openssl completions
2020-04-02 09:31:13 +02:00
Delapouite
fb5c64641c
feat(completions): add long 'list' option for prevd and nextd
2020-04-02 09:26:15 +02:00
239
1792be096a
Merge branch 'master' into completions-update
2020-03-31 14:43:40 +02:00
Delapouite
9459958c61
feat(completion): add missing -P option to read command
2020-03-30 19:37:42 +02:00
Johannes Altmanninger
08b301721f
Fix file completions for tig/gitk after -- separator [ci skip]
2020-03-29 23:11:08 +02:00
exploide
f7eb3afa11
updates nc completions
2020-03-29 16:02:53 +02:00
Johannes Altmanninger
e49b4df562
fixup! Fix GNU Make completions when specifying a directory with -C
...
Whoops!
2020-03-29 11:17:29 +02:00
Johannes Altmanninger
79566bc325
Fix GNU Make completions when specifying a directory with -C
...
Make is much better than us at figuring out which makefile to use,
just pass through the relevant parameters.
Also previously they didn't work at all for Makefiles like the one in
https://github.com/jonas/tig , for example.
2020-03-29 11:05:40 +02:00
exploide
23339ae15a
added mysql completions
2020-03-28 08:25:06 +01:00
Johannes Altmanninger
15817a0b07
Fix git ranges completion, add gitk and tig
...
[ci skip]
2020-03-27 22:23:26 +01:00
Jason Nader
69afb1b560
Update apropos
completions
2020-03-26 17:12:33 +01:00
Fabian Homborg
911465a8e7
completions/gcc: Moar descriptions
2020-03-25 22:55:58 +01:00
Fabian Homborg
356b35e446
completions/gcc: Improve some descriptions
...
This file is autogenerated, and these descriptions need quite a
cleanup.
This does the first 10% or so.
[ci skip]
2020-03-25 20:18:11 +01:00
exploide
85d6d90bf7
added completions for traceroute and tracepath
2020-03-25 18:27:56 +01:00
Matthieu Guilbert
314f4c48fc
Update terraform completion
...
Add completion for terraform worskpace.
The terraform env command is deprecated.
The terraform workspace command should be used instead.
"terraform env" will be removed in a future Terraform version.
2020-03-25 18:25:19 +01:00
George Christou
a3436110c1
Add string sub --end
( #6765 )
2020-03-22 15:53:09 +01:00
239
232f89afb2
Indent completions
2020-03-22 14:29:35 +01:00
239
260666b545
Remove fd completions
2020-03-22 14:27:49 +01:00
239
749d471d87
Update completions for zpaq
2020-03-21 16:51:01 +01:00
239
3c855e0366
Add completions for Windscribe
2020-03-21 16:49:03 +01:00
239
b677899f1e
Update completions for resolvectl
2020-03-21 16:48:06 +01:00
239
2be7f1a7e6
Update completions for loginctl
2020-03-21 16:47:28 +01:00
239
581f619147
Update completions for Keybase
2020-03-21 16:46:35 +01:00
239
3cd662e9ae
Add completions for fd
2020-03-21 16:45:31 +01:00