Kirill Gagarski

Results 23 comments of Kirill Gagarski

@dawikur As far as I understand we cannot draw an arrow () with transparent FG and blue (default for path segment) BG using terminal escape sequences. That's why black BG...

@dawikur >As far as I understand we cannot draw an arrow () with transparent FG and blue (default for path segment) BG using terminal escape sequences. Looks like we can...

So, now we can set 'default' as background for any segment. Did it by default for custom and context segments. Rebased everything on top of master branch.

Rebased everything on top of master

@dawikur @caiogondim Is it ok or should I change/update something to get it merged?

Rebased everything on top of master branch.

Rebased everything on top of master

@dawikur @caiogondim Is it ok or should I change/update something to get it merged?

(first of all, a friendly reminder that the issue still exists) But actually, I am OK with @zored's workaround (I need only 6 symbols) but I gave up implementing it....

So I ended up working this around without QMK unicode capabilities: ```c void tap_dance_mdash(uint16_t tap) { SEND_STRING(SS_TAP(X_APP)"---"); } bool ndash(uint16_t keycode, const keyrecord_t* record) { if (record->event.pressed) { SEND_STRING(SS_TAP(X_APP)"--."); }...