Welcome to Vifm Q&A, where you can ask questions about using Vifm. Registration is optional, anonymous posts are moderated. E-mail and GitHub logins are enabled.
0 votes
in vifm by

If I use Geany for my editor:

set vicmd='geany &'

when opening a file, it prints all the warning and errors over the vifm window. How can I prevent that? I tried %i like this with no luck:

set vicmd='geany %i &'

Thank you

1 Answer

0 votes
by

Probably like this:

set vicmd='geany 2>/dev/null'
by

I tried this, but it keeps vifm busy until I close geany. Do I need to include & at the end like this?

set vicmd='geany 2>/dev/null &'
by

Yes, seems like Geany doesn't detach by default (I've never used it myself).

If you would like to make a bug report or feature request consider using GitHub, SourceForge or e-mail. Posting such things here is acceptable, but this is not a perfect place for them.
...