From 4f2d7949f03e1c198bc888f2d05f421d35c57e21 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 9 Oct 2017 18:53:29 +0100 Subject: reinit the tree, so we can have metadata --- .../files/devtodo-0.1.20-bashcom_spaces.patch | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 app-misc/devtodo/files/devtodo-0.1.20-bashcom_spaces.patch (limited to 'app-misc/devtodo/files/devtodo-0.1.20-bashcom_spaces.patch') diff --git a/app-misc/devtodo/files/devtodo-0.1.20-bashcom_spaces.patch b/app-misc/devtodo/files/devtodo-0.1.20-bashcom_spaces.patch new file mode 100644 index 000000000000..8567ab4b0562 --- /dev/null +++ b/app-misc/devtodo/files/devtodo-0.1.20-bashcom_spaces.patch @@ -0,0 +1,32 @@ + contrib/devtodo.bash-completion | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/contrib/devtodo.bash-completion b/contrib/devtodo.bash-completion +index 07139b0..c058dad 100644 +--- a/contrib/devtodo.bash-completion ++++ b/contrib/devtodo.bash-completion +@@ -15,20 +15,20 @@ _devtodo() { + --purge" + + if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then +- COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) ++ COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") ) + return 0 + fi + + case "${prev}" in + -p|--priority) + COMPREPLY=( $(compgen -W "default veryhigh high medium low verylow" \ +- -- ${cur}) ) ++ -- "${cur}") ) + ;; + --database-loaders) +- COMPREPLY=( $(compgen -W "xml binary" -- ${cur}) ) ++ COMPREPLY=( $(compgen -W "xml binary" -- "${cur}") ) + ;; + -l|--link|--*database) +- COMPREPLY=( $(compgen -f -- ${cur}) ) ++ _filedir + ;; + *) + COMPREPLY=() -- cgit v1.2.3