jshint: New completion

master
Ville Skyttä 2015-05-21 17:18:21 +03:00
parent 4b209b0b17
commit adff509ec5
4 changed files with 58 additions and 0 deletions

View File

@ -166,6 +166,7 @@ bashcomp_DATA = 2to3 \
javaws \
jpegoptim \
jps \
jshint \
k3b \
kcov \
kill \

38
completions/jshint Normal file
View File

@ -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

View File

@ -0,0 +1 @@
assert_source_completions jshint

View File

@ -0,0 +1,18 @@
proc setup {} {
save_env
}
proc teardown {} {
assert_env_unmodified
}
setup
assert_complete_any "jshint "
sync_after_int
teardown