Welcome to Vifm Q&A, where you can ask questions about Vifm usage. Registration is optional, anonymous posts are moderated. GitHub or Google logins are enabled.
0 votes
in vifm by
edited by

When diffing files with vimdiff I always expect left file to appear on the left side of the diff window. So I would appreciate the help if this is possible.

1 Answer

+2 votes
by
selected by
 
Best answer

There is no good way, but it can be done (in single-view layout %C %c will be used):

command! diff : if paneisat('right') && paneisat('bottom')
            \ |     execute '!vim -d %%C %%c'
            \ | else
            \ |     execute '!vim -d %%c %%C'
            \ | endif
by

Thank you very much!

...