Re: [PATCH] Prevent space after directories in tcsh completion

2014-07-01 Thread janparadowski
Hello

script works beautifully except for a small thing:

reporoot ls 
 folder/ folder_file.txt

reproot git commit foTAB
completes to git commit folderSPACE without presenting the completion
options

(git diff foTAB completes as expected to git diff folder and gives the 2
completion options)

is that easily fixable too?



--
View this message in context: 
http://git.661346.n2.nabble.com/PATCH-Prevent-space-after-directories-in-tcsh-completion-tp757p7614312.html
Sent from the git mailing list archive at Nabble.com.
--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] Prevent space after directories in tcsh completion

2013-01-07 Thread Marc Khouzam
If git-completion.bash returns a single directory as a completion,
tcsh will automatically add a space after it, which is not what the
user wants.

This commit prevents tcsh from doing this.

Also, a check is added to make sure the tcsh version used is recent
enough to allow completion to work as expected.

Signed-off-by: Marc Khouzam marc.khou...@ericsson.com
---

This update is meant to have tcsh completion work better if the
feature git-completion.bash: add support for path completion
is accepted.
See http://www.mail-archive.com/git@vger.kernel.org/msg14137.html
This commit does not depend on that other feature though and can
be applied right away.

Furthermore, based on feedback I received, some users are running
versions of tcsh that are over 5 years old and don't provide the
proper support for this script.  I've added a check to let the user
know of such (sad) situation nicely.

Thanks

Marc

 contrib/completion/git-completion.tcsh | 33 +
 1 file changed, 21 insertions(+), 12 deletions(-)

diff --git a/contrib/completion/git-completion.tcsh 
b/contrib/completion/git-completion.tcsh
index 8aafb63..3e3889f 100644
--- a/contrib/completion/git-completion.tcsh
+++ b/contrib/completion/git-completion.tcsh
@@ -13,6 +13,7 @@
 #
 # To use this completion script:
 #
+#0) You need tcsh 6.16.00 or newer.
 #1) Copy both this file and the bash completion script to ${HOME}.
 #   You _must_ use the name ${HOME}/.git-completion.bash for the
 #   bash script.
@@ -24,6 +25,15 @@
 #set autolist=ambiguous
 #   It will tell tcsh to list the possible completion choices.
 
+set __git_tcsh_completion_version = `\echo ${tcsh} | \sed 's/\./ /g'`
+if ( ${__git_tcsh_completion_version[1]}  6 || \
+ ( ${__git_tcsh_completion_version[1]} == 6  \
+   ${__git_tcsh_completion_version[2]}  16 ) ) then
+   echo git-completion.tcsh: Your version of tcsh is too old, you need 
version 6.16.00 or newer.  Git completion will not work.
+   exit
+endif
+unset __git_tcsh_completion_version
+
 set __git_tcsh_completion_original_script = ${HOME}/.git-completion.bash
 set __git_tcsh_completion_script = ${HOME}/.git-completion.tcsh.bash
 
@@ -64,9 +74,7 @@ fi
 _\${1}
 
 IFS=\$'\n'
-if [ \${#COMPREPLY[*]} -gt 0 ]; then
-   echo \${COMPREPLY[*]} | sort | uniq
-else
+if [ \${#COMPREPLY[*]} -eq 0 ]; then
# No completions suggested.  In this case, we want tcsh to perform
# standard file completion.  However, there does not seem to be way
# to tell tcsh to do that.  To help the user, we try to simulate
@@ -85,19 +93,20 @@ else
# We don't support ~ expansion: too tricky.
if [ \${TO_COMPLETE:0:1} != ~ ]; then
# Use ls so as to add the '/' at the end of directories.
-   RESULT=(\`ls -dp \${TO_COMPLETE}* 2 /dev/null\`)
-   echo \${RESULT[*]}
-
-   # If there is a single completion and it is a directory,
-   # we output it a second time to trick tcsh into not 
adding a space
-   # after it.
-   if [ \${#RESULT[*]} -eq 1 ]  [ \${RESULT[0]: -1} == 
/ ]; then
-   echo \${RESULT[*]}
-   fi
+   COMPREPLY=(\`ls -dp \${TO_COMPLETE}* 2 /dev/null\`)
fi
fi
 fi
 
+# tcsh does not automatically remove duplicates, so we do it ourselves
+echo \${COMPREPLY[*]} | sort | uniq
+
+# If there is a single completion and it is a directory, we output it
+# a second time to trick tcsh into not adding a space after it.
+if [ \${#COMPREPLY[*]} -eq 1 ]  [ \${COMPREPLY[0]: -1} == / ]; then
+   echo \${COMPREPLY[*]}
+fi
+
 EOF
 
 # Don't need this variable anymore, so don't pollute the users environment
-- 
1.8.1.367.g8e14972.dirty
--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html