diff options
author | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2023-09-04 15:07:52 +0900 |
---|---|---|
committer | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2023-09-04 15:07:52 +0900 |
commit | c0caef561323b91ea0c4aa101b564f92ab51b68d (patch) | |
tree | 5caa79c3bfb53add8f14e49333b456f76bdeded3 /Completion/BSD/Command | |
parent | 9ff1b2810e70658b2364b737478e9a996de0a644 (diff) | |
download | zsh-c0caef561323b91ea0c4aa101b564f92ab51b68d.tar.gz zsh-c0caef561323b91ea0c4aa101b564f92ab51b68d.zip |
52112: use '_normal -p subcmd' to complete only external command
Diffstat (limited to 'Completion/BSD/Command')
-rw-r--r-- | Completion/BSD/Command/_jexec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/BSD/Command/_jexec b/Completion/BSD/Command/_jexec index 6a2d05a81..cd99ebe91 100644 --- a/Completion/BSD/Command/_jexec +++ b/Completion/BSD/Command/_jexec @@ -6,7 +6,7 @@ _jexec_normal() { # relative paths are relative to the jail's root path=( "$(_call_program paths jls -j $words[1] path)"/$^path ) shift 1 words; (( CURRENT-- )) - _normal + _normal -p $service } _jexec() { |