]> git.madduck.net Git - etc/vim.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:

make zsh integration depend on vim being installed
authormartin f. krafft <madduck@madduck.net>
Wed, 4 Oct 2017 09:47:55 +0000 (11:47 +0200)
committermartin f. krafft <madduck@madduck.net>
Wed, 4 Oct 2017 09:51:14 +0000 (11:51 +0200)
.zsh/zshenv/parts.d/50-vim

index 2818885c9e3f32c775679abc9fad4d1a2706b36e..51d633e344b5ad8147d5f2ba48a09eeae34674d3 100644 (file)
@@ -7,7 +7,9 @@
 # Source repository: http://git.madduck.net/v/etc/zsh.git
 #
 
-export EDITOR==vim
-export VISUAL=$EDITOR
+if command -v vim >/dev/null; then
+  export EDITOR==vim
+  export VISUAL=$EDITOR
+fi
 
 # vim:ft=zsh