/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
1.0
contrib/qdbus
20 строк
453 B
Ville Skyttä
Do not make vi and friends expand tabs with spaces.
17 янв 2009, 12:38
17 янв 2009, 12:38
4a36023
Код
Авторство
О чём код?
# -*- mode: shell-script; sh-basic-offset: 8; indent-tabs-mode: t -*- # ex: ts=8 sw=8 noet filetype=sh # # Qt qdbus completion # have qdbus && _qdbus() { local cur compstr COMPREPLY=() cur=`_get_cword` if [ -z "$cur" ]; then compstr=${COMP_WORDS[*]} else compstr=$( command echo ${COMP_WORDS[*]} | sed "s/ ${cur/\//\\/}$//" ) fi COMPREPLY=( $( compgen -W '$( command $compstr | sed s/\(.*\)// )' -- "$cur" ) ) } && complete -F _qdbus qdbus