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

Hi,

When comparing files under 2 folder, I normally select 2 files, then use

:!vim -d %f %F %s

To open vimdiff to compare selected files' content, this is very helpful.

One thing I want to tweak is: is it possible to pass the width or height for the new split multiplexer window ? I know tmux has this capability, not sure if I can specify that config through %s or %v command macro.

Thanks.

1 Answer

0 votes
by

Hi,

No macros for that, but you can do that explicitly:

 :!tmux resize-pane -y 10 && vim -d %b %s
by

This works well, thanks!

...