xaizek
xaizek
When Vifm is run with `--choose-files`, default behaviour is overwritten and isn't directly accessible. However, since you want to use the plugin to not use it, maybe just run (wrapped...
Yes, need to use result of `--choose-dir`, specifically feed it into `:cd` or `:lcd`. The catch though is that plugin's code is a mess. Code-wise: 1. In `s:StartVifm` and `s:HandleRunResults`....
I think neither Vim nor NeoVim provides ability to manipulate jumplist. Without it one would have to map ``/`` to some functions which open Vifm in a buffer upon reaching...
If Vim crashes, then it's way more than extradite/fugitive plugin issue. I'd try to reproduce it on the latest Vim and report bug there if still occurs.
Actually, 52326f6d333cdbb9e9c6d6772af87f4f39c00526 added `let w:airline_disabled = 1` for #37. Alternative would be to fire custom event(s) on close/open of extradite, so users of airline could disable/enable airline themselves. I didn't...
> As no plugin now solves this problem Isn't that what https://github.com/suy/vim-context-commentstring is trying to do?
I think you do it like this (better use `after/ftplugin` directory, this is just an example): ```vim autocmd FileType c :let b:commentary_format = '/*%s*/' ``` Maybe even: ```vim autocmd FileType...
As was noted [on Reddit](https://www.reddit.com/r/vifm/comments/1c0hpi0/vifm_command_to_display_selected_directory_in/kywrq6j/), using `:tree` as a preview is a weird way to go about it which results in complicated mappings. Making preview of directories look more like...
@palemoonrider, you can just clone https://github.com/jackrosenthal/pentadactyl-pm which contains this patch with additional changes in the `master` branch. Then follow instructions for building xpi given in the README.
@Massimo-B, I worked around it like this: ```diff common/modules/finder.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/modules/finder.jsm b/common/modules/finder.jsm index 90745ee0..fbc8b24a 100644 --- a/common/modules/finder.jsm +++ b/common/modules/finder.jsm...