kiryph

Results 117 comments of kiryph

I add a complete patch with another addition taking the variable `g:netrw_altfile` into account. However, I am not sure about this. ```diff diff --git a/vinegar.vim b/vinegar-Explore.vim index f471141..e16898c 100644 ---...

Following code change updates `g:netrw_list_hide` from `wildignore` everytime `s:setup_vinegar()` is called (happens for `autocmd Filetype netrw`) which can be triggered also manually with ``: ``` diff function! s:setup_vinegar() abort +...

### Update `g:netrw_list_hide` from `'wildignore'` on event `OptionSet` The event `OptionSet` has been added in patch 7.4.786 (17 Jul 2015) with some fixes later on. ```viml " if has('patch-7.4.786') augroup...

> I can't remember, is there a good way to force netrw to redraw automatically? I am struggling with this right now. My testing scenario is following 1) I have...

I can emphasize once again that, instead of pressing `` to update the listing, invoking `:doautocmd FocusGained` removes the `*.pyc` files. But pressing `` readds them. This looks like a...

After some further digging around in `autoload/netrw.vim`, I have found the netrw function `s:NetrwOptionsSafe` which deliberately empties `'wildignore'` for netrw windows: ```viml "netrw version 163 1689:" s:NetrwOptionsSafe: sets options to...

~~Since netrw changes `wig` itself, the advantage of updating `g:netrw_list_hide` only when `wig` changes via `OptionSet` does not really exist. Therefore, I do no longer propose~~ > ~~Update g:netrw_list_hide from...

I just want to remind what tpope already said about `g:netrw_list_hide`: > Yes I just said I'm deliberately overriding you, and asked why you want to fight it. Vinegar's stance...

I know that your patch will still add `'wildignore'` to `g:netrw_list_hide` but your patch removes the part > I'm deliberately overriding you. I struggled with this myself and would not...

> Thank you @kiryph for tracking all those down, that was my next step. you are welcome. > I also like that you can have a basic netrw config you...