xaizek
xaizek
I told you which changes you can do to code to have different permissions. Alternatively, run `chmod 666 /sys/devices/platform/nct6687.2592/hwmon/hwmon*/pwm*` in some system initialization script.
It's also possible to do it via udev (say, in `/etc/udev/rules.d/nct6687.rules`): ```udev SUBSYSTEM=="hwmon", DEVPATH=="/devices/platform/nct6687.*/hwmon/hwmon*", ACTION=="add", RUN+="/bin/chmod 666 %S%p/pwm*" ``` This has the advantage of being run after manual `modprobe` as...
Oups, sorry for advising something that can't work: https://github.com/torvalds/linux/blob/67be068d31d423b857ffd8c34dbcc093f8dfff76/fs/sysfs/group.c#L63 Didn't know Linux limits permissions there. One can probably modify group, but using `udev` rule from above might be easier.
> As i said above, udev rule doesn't work for me as well for some reason I missed that when catching up. Glob doesn't expand there and of course I...
I think you misunderstood what this line says. This is a regular command which you can run in command-line mode. The results of the command are presented in a menu....
> I see. Well, then the issue is that you can't use `:filetype %c`: > > `No programs match %c` > > and autocomplete doesn't work either. Completion and macros...
It was never declared that `:goto` preserves tree-view and it never did, so this isn't a bug. However, it probably wasn't a conscious decision to not preserve custom or tree...
`:goto` now keeps the tree or custom view if a file can be found in the list. Expanding folds can be done in the future. > However if you go...
Do you experience similar issues when running Vifm outside of gVim? Also, which path/filename are you talking about? Current working directory of Vim, Vifm or something else?
> There's no issue when running outside of gVim (tested on Windows Terminal v1.20.11781.0) Judging by the screenshot it's not as bad, but there is still an issue. vifm.vim doesn't...