[Bash-completion-commits] [bash-completion] 01/01: jshint: New completion

Ville Skyttä scop-guest at moszumanska.debian.org
Thu May 21 14:19:37 UTC 2015


This is an automated email from the git hooks/post-receive script.

scop-guest pushed a commit to branch master
in repository bash-completion.

commit adff509ec54a45957ac3c0f1facbe6dec3c5a0aa
Author: Ville Skyttä <ville.skytta at iki.fi>
Date:   Thu May 21 17:18:21 2015 +0300

    jshint: New completion
---
 completions/Makefile.am         |  1 +
 completions/jshint              | 38 ++++++++++++++++++++++++++++++++++++++
 test/completion/jshint.exp      |  1 +
 test/lib/completions/jshint.exp | 18 ++++++++++++++++++
 4 files changed, 58 insertions(+)

diff --git a/completions/Makefile.am b/completions/Makefile.am
index f91a689..38db3ef 100644
--- a/completions/Makefile.am
+++ b/completions/Makefile.am
@@ -166,6 +166,7 @@ bashcomp_DATA = 2to3 \
 		javaws \
 		jpegoptim \
 		jps \
+		jshint \
 		k3b \
 		kcov \
 		kill \
diff --git a/completions/jshint b/completions/jshint
new file mode 100644
index 0000000..1ed9083
--- /dev/null
+++ b/completions/jshint
@@ -0,0 +1,38 @@
+# bash completion for jshint                               -*- shell-script -*-
+
+_jshint()
+{
+    local cur prev words cword split
+    _init_completion -s || return
+
+    case $prev in
+        -v|--version|-h|--help|--exclude|--filename|-e|--extra-ext)
+            return
+            ;;
+        -c|--config)
+            _filedir
+            return
+            ;;
+        --reporter)
+            COMPREPLY=( $( compgen -W "jslint checkstyle unix" -- "$cur" ) )
+            return
+            ;;
+        --extract)
+            COMPREPLY=( $( compgen -W "auto always never" -- "$cur" ) )
+            return
+            ;;
+    esac
+
+    $split && return
+
+    if [[ $cur == -* ]]; then
+        COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
+        [[ $COMPREPLY == *= ]] && compopt -o nospace
+        return
+    fi
+
+    _filedir js
+} &&
+complete -F _jshint jshint
+
+# ex: ts=4 sw=4 et filetype=sh
diff --git a/test/completion/jshint.exp b/test/completion/jshint.exp
new file mode 100644
index 0000000..4416472
--- /dev/null
+++ b/test/completion/jshint.exp
@@ -0,0 +1 @@
+assert_source_completions jshint
diff --git a/test/lib/completions/jshint.exp b/test/lib/completions/jshint.exp
new file mode 100644
index 0000000..553883e
--- /dev/null
+++ b/test/lib/completions/jshint.exp
@@ -0,0 +1,18 @@
+proc setup {} {
+    save_env
+}
+
+
+proc teardown {} {
+    assert_env_unmodified
+}
+
+
+setup
+
+
+assert_complete_any "jshint "
+sync_after_int
+
+
+teardown

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/bash-completion/bash-completion.git



More information about the Bash-completion-commits mailing list