mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 09:39:52 +08:00
bb7b649132
This enables some limited use of arguments for wrapping completions. The simplest example is that complete gco -w 'git checkout' now works like you would want: `gco <tab>` now invokes git's completions with the `checkout` argument prepended. Fixes #1976
7 lines
146 B
Plaintext
7 lines
146 B
Plaintext
|
|
####################
|
|
# Completion Wrappers
|
|
complete_test_alpha1 arg1
|
|
complete_test_alpha1 extra1 arg2
|
|
complete_test_alpha1 extra1 extra2 arg3
|