Anton Filimonov

Results 378 comments of Anton Filimonov

Hi, that could be useful to make search more user-friendly. If you mostly use the sama patterns, then predefined filters provides simialr features. It is possible to add|remove them using...

That is known limitation of highlighters engine. It uses Qt regular expressions, and not the full Hyperscan+exprtk thing. The reason for this is that Hyperscan by default does not provide...

Moved capture group highlight issues to #373

The behaviour for capture groups is intended, but sometimes they are used just to group alternatives for `|` operation. Wrapping the whole expression with another set of parentheses is a...

@ArsMasiuk what exact version of MSVC c++ compiler was used in failed build case? Klogg builds fine on GitHub build agents. Here is some output from configure step: ``` --...

Compiler is the same as in CI. However, Qt version in your configuration is `Qt version 5.13.2`. I've never tried building klogg with it. If possible, please, move to one...

@kindacute looks like enabling polling for changes in klogg options could help in this case. Klogg uses [efsw](https://github.com/SpartanJ/efsw) library for file changes monitoring. It could be that notifications are delayed...

Good to know. Efsw has two file monitoring backends for macOS. I'll check which one is better, or maybe add an option to choose a backend.

That could also be related to some file system level caching. I usually leave polling interval at 2000ms. Making it lower than 500ms will just cause unnecessary load. I'm still...

Klogg has some throttling for file system notifications as sometimes in big file trees there are so many events that it hangs (see #286). Throttling interval was set to 500ms....