Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. @echo off
  2. chdir C:cygwinbin
  3. start mintty.exe /usr/bin/vim-nox.exe %1
  4.  
  5. vim filename
  6.  
  7. vim --remote filename
  8.  
  9. man vim
  10.  
  11. #!/bin/sh
  12. FILEPATH=$(cygpath -u "$1");
  13. vim "$FILEPATH"
  14.  
  15. [HKEY_CLASSES_ROOT*shellEdit with Vim]
  16. @="Edit with &Vim"
  17.  
  18. [HKEY_CLASSES_ROOT*shellEdit with Vimcommand]
  19. @="C:\cygwin64\bin\mintty.exe -i /Cygwin-Terminal.ico /bin/native-vim "%1""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement