Jan Dolinár
Jan Dolinár
Hello @arithy and @andrewchambers, Here is my unfinished attempt on adding optimization phase to packcc, as I mentioned in https://github.com/arithy/packcc/issues/46#issuecomment-936353311. ## Possible optimizations: - Inline simple terminal symbols (multi pass)...
Hi, I have experienced troubles with popups in last version of Geany on Wayland. The context menu never shows and this message is printed to stdout: ``` Gdk-Message: 07:03:47.840: Window...
Fix context menus on walyand (see #3009).
This is a third incarnation of PR to add support for [Kotlin language](https://kotlinlang.org/). Previous discussions can be found in https://github.com/geany/geany/pull/2778 and https://github.com/dolik-rce/geany/pull/1. Included changes: - Small modification of update-ctags.sh, so...
Hello, I'd like to ask if this parser generator supports unicode in character classes? From my testing so far it seems that unicode escapes (e.g. `\u1234`) work fine in strings...
This is my attempt to add correct handling of unicode characters in character classes (see #8). The code assumes UTF-8 encoding, which I believe to be a reasonable assumption which...
I have noticed, that if I use pre-existing table and pass it to List.js, then any event listeners that were added to the original elements disappear. Little example: ```html Name...
### Bug description ```python import signal import sys def handle_signal(): signal.signal(signal.SIGINT, lambda sig, frame: [print("Aborted using CTRL+C"), sys.exit(1)]) print("Signal handler installed.") ``` ### Configuration _No response_ ### Command used ```shell...
Hello @arithy, I have noticed very small bug that might crash PackCC, but only on some very broken grammars. If there is only one rule and it contains syntax error,...
I have been developing [pegof](https://github.com/dolik-rce/pegof) as a hobby project for past few years. Recently it became good enough to optimize Kotlin grammar, making it 3 times faster and about 2.7...