about summary refs log tree commit diff
path: root/Completion/X
diff options
context:
space:
mode:
authordana <dana@dana.is>2018-01-04 11:48:02 -0600
committerOliver Kiddle <opk@zsh.org>2018-01-05 15:29:17 +0100
commitae059841b0791195fbae04bafc2acc73058b48fc (patch)
treeba2e709e60b51bd2f28f98affd40812a5cd63c75 /Completion/X
parent48f01128be4d943e0c65a284b36e946e93bf2d05 (diff)
downloadzsh-ae059841b0791195fbae04bafc2acc73058b48fc.tar.gz
zsh-ae059841b0791195fbae04bafc2acc73058b48fc.tar.xz
zsh-ae059841b0791195fbae04bafc2acc73058b48fc.zip
42223: new completions for sublime text and some basic Unix utilities
Diffstat (limited to 'Completion/X')
-rw-r--r--Completion/X/Command/_sublimetext13
1 files changed, 13 insertions, 0 deletions
diff --git a/Completion/X/Command/_sublimetext b/Completion/X/Command/_sublimetext
new file mode 100644
index 000000000..1243d2779
--- /dev/null
+++ b/Completion/X/Command/_sublimetext
@@ -0,0 +1,13 @@
+#compdef subl
+
+_arguments -s -S : \
+  '(-a -n --add --new-window)'{-a,--add}'[add to current window]' \
+  '(-b --background)'{-b,--background}"[don't activate application]" \
+  '--command[run specified command]:command' \
+  '(: -)'{-h,--help}'[display help information]' \
+  '(-a -n --add --new-window)'{-n,--new-window}'[open new window]' \
+  '--project[load specified project]:project file:_files' \
+  '(-s --stay)'{-s,--stay}'[keep application activated]' \
+  '(: -)'{-v,--version}'[display version information]' \
+  '(-w --wait)'{-w,--wait}'[wait for files to close]' \
+  '*:file or directory:_files'