Results 500 comments of xaizek

There is a TODO entry: ``` Fix '' to go back to all jumps G gg links (in one directory?). ``` which is about such behaviour even though phrasing is...

This looks like a special case of a more generic idea: making all kinds of matchers available for search and filtering. It hasn't been implemented as there were some unclear...

One more thing. Do you mean matching against visible path as a whole (`/home/user/`) or path entries separately (`home` and `user`)? Seems like the latter.

> maybe it is better to allow filters (at least local ones) match agains glob wildcards instead of regexes? >> This looks like a special case of a more generic...

`*` in vifm doesn't match slashes only in `:autocmd` to give a way to control nesting level of directories there. It can match anything in `{{pattern}}`.

There is Wiki at https://wiki.vifm.info/ Started long time ago tutorial: https://wiki.vifm.info/index.php/Manual Sitaram's notes are mentioned there: https://wiki.vifm.info/index.php/Vifm_on_the_Web Although it might deserve to be highlighted in some way.

Well, tutorial on the wiki is very incomplete and those on the Web usually cover the same relatively basic stuff, so there isn't anything comprehensive.

> would open up more keys to use for other functions How is that? You can overwrite builtin keys without read-only mode as well. > What do you think? I...

curses doesn't know about these keys, so you get their "values". You might be able to map them nonetheless: ```vim cnoremap [1;5C cnoremap [1;5D ```

There is nothing about Ctrl+Left/Right. It just says that Ctrl-B == Left. And `c_Left` means Left in command-line mode (`c_`). Tag for Ctrl+Left would be `vifm-c_CTRL-Left`.