Results 500 comments of xaizek

Which files/directories to ignore can be set via [`:filter` command](https://vifm.info/vimdoc.shtml#vifm-%3Afilter), but it's not specific to tree-view. You're speaking of ignoring them but then of having some directories folded by default,...

> Using `:tree` - Would be great to keep certain files folded... So if the dir has node_modules and .git folders is gonna show them folded. This is what I...

```vim execute 'filter /^node_modules\/$|^\.git\/$/' | tree ``` can be simplified: ```vim filter {node_modules/,.git/} | tree ``` `execute 'tree'` can also be replaced with `tree`. `elseif $toggle2 == 1` (same for...

> Just 1 thing, was needed to add the `!= 1`, it doesn't toggle without it. Right, it should have been `if !$toggle` and `if !$toggle2`.

Thanks for the report. There is clearly an issue. Vifm does terminate after picking a file, otherwise nothing would get opened in Vim, but Vifm is started again in a...

I think I've figured it out. Try using `bwipeout` instead of `bdelete`. Since `:bdelete` doesn't actually remove the buffer, but just makes it harder to access, it probably remains recorded...

Sorry, I wasn't clear enough, the place where `bwipeout` makes difference over `bdelete` is in https://github.com/vifm/vifm.vim/blob/91d50ba57da96e0bd467ecb768914573d09d770d/plugin/vifm.vim#L496-L503

Weird, for me using `bwipeout` makes `:ls!` print only a single buffer in both Vim and neovim and the OP's issue is completely resolved. I'll push the fix and close...

`pwm*_enable` is for "fan speed control method" ([docs](https://www.kernel.org/doc/html/latest/hwmon/sysfs-interface.html#pwm)). `pwmconfig` seems to confuse it for `pwm*`.

> you mean it is `lm-sensors` side problem? I noticed that it's repo hasn't been updated for years, how could I solve this? It looks like that to me. There...