If I want vifm to open the config file in a new window how would I do this?
Given these two lines, I'd want the bottom one to behave similarly to the top one.
" Edit vifmrc and apply settings after returning to vifm
nnoremap ,c :write | edit $MYVIFMRC | restart full<cr>
" Edit vifmrc in separate window, apply settings after returning to vifm
nnoremap ,C :write | :execute('foot nvim $MYVIFMRC') | :restart full <cr>
Previously, this used :!gvim with the --remote-tab-silent flag. This allowed for "detatching" the config file for editing while the original window remains in vifm.
Forgive me for the formatting, I am not familliar with how Q2A handles markdown