Anton Filimonov

Results 378 comments of Anton Filimonov

Looks similar to #257. Does this happen with static files or when files are changing on disk? glogg has some issues with partial files reindexing when new lines are appended...

Glogg expects random read access to opened file (file is never kept in memory). As far as I know pipes are not seekable. In theory glogg could read from the...

I can think of one way to implement this. Glogg can spawn a process to read stdin and write to temporary file. This file can be opened to do searching....

This is available in [klogg 20.12 release](https://github.com/variar/klogg/releases/tag/v20.12)

Hi, could you check if https://github.com/variar/klogg has the same issue? I have opened many log files with long lines and never encountered this issue either in glogg or klogg. A...

* open multiple files at once (i.e. with Ctrl+Click on Windows) -- this might be fixed in PR#136 that was integrated to 1.1.4. Klogg uses similar code and if I...

This will be next big feature in [klogg](https://github.com/variar/klogg). Might be ready by New Year, but no promises.

Released versions of glogg use [QRegExp](https://doc.qt.io/archives/qt-4.8/qregexp.html) for matching. Looks like lookahead syntax should be (?=s). The regex works as is in QRegularExpression based builds from master branch as well as...

[Klogg](https://github.com/variar/klogg) has portable version. See releases on GitHub.

You can pass sevaral files in command line. Glogg should open all of them and then you can use `shift+Left|Right arrow` to switch between tabs.