diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:08:21 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:08:21 +0000 |
commit | 9a7312215f26119312e5e4dc912a49015ee238fc (patch) | |
tree | d0f9e9002991f9d8bfc89dfd2daac09d3ecdf09a | |
parent | 7ac59290831841beaf773e56b8260b86127b317d (diff) | |
download | zsh-9a7312215f26119312e5e4dc912a49015ee238fc.tar.gz zsh-9a7312215f26119312e5e4dc912a49015ee238fc.tar.xz zsh-9a7312215f26119312e5e4dc912a49015ee238fc.zip |
moved from Completion/X/_x_borderwidth
-rw-r--r-- | Completion/X/Type/_x_borderwidth | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Completion/X/Type/_x_borderwidth b/Completion/X/Type/_x_borderwidth new file mode 100644 index 000000000..c2f0eec83 --- /dev/null +++ b/Completion/X/Type/_x_borderwidth @@ -0,0 +1,9 @@ +#autoload + +local x="$argv[(I)-X]" + +if (( x )); then + _message -r "$argv[x + 1]" +else + _message 'border width' +fi |