Results 60 comments of Adam

Hello, sorry for the delayed reply. There's no built-in command that does that, but I think you could do it with a user script or a macro. The built-in multiple...

Good find! The built-in regexes that determine word-forward and word-back behavior are `MLE_RE_WORD_FORWARD` and `MLE_RE_WORD_BACK` respectively. Both use `\w` and `\W` to match "word" and non-"word" characters. What counts as...

I will take another look this weekend @kevinsjoberg. Lately I've been working toward #34 / other termbox refactoring in my spare time.

OK I figured it out. pcre must be compiled with both `--enable-utf` and `--enable-unicode-properties` to get this working. At runtime, the regex must also be compiled with `PCRE_UTF8` and `PCRE_UCP`...

Have a look at https://github.com/adsr/mle/pull/53 @kevinsjoberg. You can set custom regexes like the one specified here: https://github.com/adsr/mle/pull/53/files#diff-b1da74adfdb4f4a70fb14bd45365c64ebad09f08ba3f77af4817e94bb1c4f4cdR4

Closing some stale tickets. Feel free to reopen if anyone wants this feature.

Good call @KevinSjoberg. This behavior feels natural to me only because I know under the hood that browsing (`C-b`) into a directory is a plain `chdir(2)` call which changes the...

In 3253070 I implemented a 4th option not described above: Avoid `chdir` entirely and maintain a `bview_t.browse_path` variable used by `cmd_browse`. When entering a directory via `cmd_browse`, we append to...

Thanks @cdluminate. I'll tag you next time I cut a release.

Hi @NuclearKev, the reason I didn't add `` is because then the editor would then attempt to match / underline random pairs of greater-than and less-than operators when cursoring around,...