about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>2018-07-18 17:13:11 +0900
committerJun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>2018-07-18 17:13:11 +0900
commit6ae241c43a12a1639195b31ea7649ae9643dd4c7 (patch)
tree172cc53c13a0c905ae10990ef677ab77cbdbb8f8
parent50e272d301a5fc6250afc8670075141966d2fee8 (diff)
downloadzsh-6ae241c43a12a1639195b31ea7649ae9643dd4c7.tar.gz
zsh-6ae241c43a12a1639195b31ea7649ae9643dd4c7.tar.xz
zsh-6ae241c43a12a1639195b31ea7649ae9643dd4c7.zip
43182: _lldb: complete process name after option -n
-rw-r--r--ChangeLog3
-rw-r--r--Completion/Unix/Command/_lldb5
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 91e854f6a..cc3fe358c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,9 @@
 	* 43177: Completion/Unix/Command/_grep: support bzgrep, and add
 	a few options for macOS.
 
+	* 43182: Completion/Unix/Command/_lldb: complete process name
+	after option -n/--attach-name
+
 2018-07-17  Peter Stephenson  <p.stephenson@samsung.com>
 
 	* unposted: Doc/Makefile.in: remove ftp_sites.yo.
diff --git a/Completion/Unix/Command/_lldb b/Completion/Unix/Command/_lldb
index 16e346cfb..0426f69f2 100644
--- a/Completion/Unix/Command/_lldb
+++ b/Completion/Unix/Command/_lldb
@@ -2,7 +2,8 @@
 
 local curcontext=$curcontext state state_descr line expl ret=1
 typeset -A opt_args
-local -a args
+typeset -a opts args
+[[ $EUID = 0 || $_comp_priv_prefix[1] = sudo ]] && opts=( -a )
 
 args=(
   '*'{-o+,--one-line=}'[run one-line lldb command after loading executable]:lldb command: '
@@ -29,7 +30,7 @@ args=(
     '(-c --core)'{-c+,--core=}'[specify core file to open]:core file:_files -g "*core*(-.)"'
     '*::executable and arguments:->exe_args'
   - name
-    '(-n --attach-name)'{-n+,--attach-name=}'[attach to the named process]:process name'
+    '(-n --attach-name)'{-n+,--attach-name=}"[attach to the named process]: :_process_names $opts"
     '(-w --wait-for)'{-w,--wait-for}'[wait for the specified process to launch]'
   - pid
     '(-p --attach-pid)'{-p+,--attach-pid=}'[attach to the specified process]:pid:_pids'