Egor Krugletsov

Results 10 issues of Egor Krugletsov

Hello. I am developing an app which is currently built with MinGW-W64 5.3.0 on Windows. As it always goes, a need arose to see stacktrace when on crash on consumer...

Hi! I am trying to use stackwalker, but it fails on trying to parse .sym file. Currently I am making dumps using Google Crashpad, but for dumping symbols and stackwalking...

**Problem description** I have a lot of repositories open and most of the time I navigate using mouse. I often times missclick on the X button and close tab instead...

**Problem description** I use Merge both for personal and professional work on a same machine and same OS account. At any given moment I have a lot of repositories open...

… header file is not found The script expects to find header file include with relative path. However, if absolute path is used (e.g. #include "path/to/header.h" instead of #include "header.h")...

Hi! Encountered an issue today. Repro: 1. `editor.setHTML('foobar'); editor.increaseQuoteLevel()`. 2. Set cursor to the end of the first line. 3. Press Enter. Get an empty line as expected. 4. Press...

`choices()` function gives programmer an ability to set list of valid values for this option. This is neat because it moves burden of validating input from the programmer to the...

I get a bunch of errors building latest master. ``` In file included from /home/joe/programming/GP2040-CE/build/_deps/pico_sdk-src/lib/mbedtls/include/mbedtls/build_info.h:192, from /home/joe/programming/GP2040-CE/build/_deps/pico_sdk-src/lib/mbedtls/include/mbedtls/rsa.h:20, from /home/joe/programming/GP2040-CE/headers/drivers/ps4/PS4Auth.h:5, from /home/joe/programming/GP2040-CE/src/drivers/ps4/PS4Auth.cpp:4: /home/joe/programming/GP2040-CE/build/_deps/pico_sdk-src/lib/mbedtls/include/mbedtls/check_config.h:748:2: error: #error "MBEDTLS_RSA_C defined, but not all prerequisites"...

Hi! We've noticed an issue with emails composed by Outlook. Outlook generates a document that uses both `style` element and inline styles. Inserting such document into editor (`Squire.insertHTML()`) will strip...

Hi! What would be the best way to trim blank HTML lines? I am currently doing it like that: ```js const let blankLine = '...' editor.getHTML() .replace(new RegExp(`^(${blankLine})+`), '') .replace(new...