Arseniy Terekhin

Results 26 issues of Arseniy Terekhin

Hi! I failed at creating a widget with complex content using textual. What would help me is an example of how one do something like this: ![window](https://user-images.githubusercontent.com/76137/175279689-22a5a28b-0e2e-49a4-bda1-3baa05cf195c.png) My try at...

Hello! I'm writing my first TextMate grammar and I can't figure out why `()` rule does not math. This is my [pikchr.tmLanguage.json](https://github.com/microsoft/vscode-textmate/files/13466737/pikchr.tmLanguage.json) and my code sample is `arrow down 70%...

Hello! I'm using "buildbot/buildbot-master:master" and I'm seeing this error in the logs: ``` ... buildbot_1 | 2024-01-25 13:57:06+0000 [-] adding 1 new change_sources, removing 0 buildbot_1 | 2024-01-25 13:57:06+0000 [-]...

bug

Hi! I want to parse (lex) `"He\"llo" "𝑤𝑜𝑟𝑙𝑑!"` as two tokens `He"llo` and `𝑤𝑜𝑟𝑙𝑑!`. I couldn't find anything that would work. I think #79 is a similar issue. `r'"(?:\\.|[^"\\])*"'` idea...

Hi! I'm trying to parse `1 2 | 3 4` to ```python OR( a = AND( a = 1 b = 2 ) b = AND( a = 3 b...

Hi! [Configuration.rst](https://github.com/unbit/uwsgi-docs/blob/9b4ef5fa68fe42929a5e5410165d36fcc7b2d2c7/Configuration.rst) says, that Example: ``` uwsgi --http-socket :9090 --psgi myapp.pl ``` can be written as ``` [uwsgi] http-socket = :9090 psgi = myapp.pl ``` Which is absolutely ridiculous. The...

Like this: ``` {% include "script.js" %} ```

Hi! Can we set text orientation? I'd like `b` to be horizontal. ![image](https://user-images.githubusercontent.com/76137/195869127-1e551ee1-d43c-4cd2-9b72-2ddb771ac690.png) The braces look superb btw!

Hi! The documentations says _the value type is defined as int in the header file, you can redefine it to the required type, which could be char or void* or...