changed vim to vi in vifmrc

This commit is contained in:
Gregor Feierabend 2021-08-29 09:32:45 +02:00
parent 4fcc46f8f8
commit 6e8125eae6

View file

@ -11,7 +11,7 @@
" If you would like to use another vi clone such as Elvis or Vile " If you would like to use another vi clone such as Elvis or Vile
" you will need to change this setting. " you will need to change this setting.
set vicmd=vim set vicmd=vi
" set vicmd=elvis\ -G\ termcap " set vicmd=elvis\ -G\ termcap
" set vicmd=vile " set vicmd=vile
@ -133,12 +133,12 @@ mark h ~/
" %m run the command in a menu window " %m run the command in a menu window
command! df df -h %m 2> /dev/null command! df df -h %m 2> /dev/null
command! diff vim -d %f %F command! diff vi -d %f %F
command! zip zip -r %f.zip %f command! zip zip -r %f.zip %f
command! run !! ./%f command! run !! ./%f
command! make !!make %a command! make !!make %a
command! mkcd :mkdir %a | cd %a command! mkcd :mkdir %a | cd %a
command! vgrep vim "+grep %a" command! vgrep vi "+grep %a"
command! reload :write | restart command! reload :write | restart
" ------------------------------------------------------------------------------ " ------------------------------------------------------------------------------