]> git.madduck.net Git - code/vcsh.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Avoid error when executed by /bin/sh
authorRichard Hartmann <richih.mailinglist@gmail.com>
Tue, 24 May 2011 21:46:16 +0000 (23:46 +0200)
committerRichard Hartmann <richih.mailinglist@gmail.com>
Tue, 24 May 2011 21:46:16 +0000 (23:46 +0200)
No idea why

  [[ -n $ZSH_VERSION ]] && vcsh_exit() {vcsh exit; zle reset-prompt;}

errors out with

  vcsh: 96: Syntax error: "}" unexpected (expecting "fi")

but oh well.

vcsh

diff --git a/vcsh b/vcsh
index 5acd515dc422ab8b0dc0ef2d42611dc7db2f67c2..e3612b72520aeaac75bbd8e5073f3b6546f53415 100755 (executable)
--- a/vcsh
+++ b/vcsh
@@ -93,7 +93,12 @@ elif [ "$1" = 'use' ]; then
        if [[ -o NO_IGNORE_EOF ]]; then
                export VCSH_NO_IGNORE_EOF=1
                setopt IGNORE_EOF
-               vcsh_exit() {vcsh exit; zle reset-prompt;}
+               if [[ -n $ZSH_VERSION ]]; then
+                       vcsh_exit() {
+                               vcsh exit;
+                               zle reset-prompt;
+                       }
+               fi
                zle -N vcsh_exit
                bindkey '^d' 'vcsh_exit'
        fi