-
The following macro is supposed to delete the line where the cursor is positioned:
It works in web browsers and in VSCode, but not in Gedit or LibreOffice Writer. In those apps, the cursor is moved to the beginning of the line instead of deleting the whole line. Does anyone have any idea why it isn't working everywhere? I am running Kanata 1.8.1, and I tested everything with Fedora 37. Here's the full configuration file:
Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Likely the applications aren't successfully dealing with the rapidity of certain events. This is common in Linux unfortunately. Maybe try this; you should hold the key until macro completion to ensure unmod stays active. Also it will unfortunately completely release
|
Beta Was this translation helpful? Give feedback.
I ended up with
...(macro end 5 S-(5 home) 5 S-(5 home) 5 spc 5 bspc 5 del)...
del
is for the first line edge case andspc
for the empty line case(unmod (lalt ralt lmet rmet rsft lctl rctl) nop0)
seems like a fancy way to release all modifiers, but ifctI
is really hold, shouldn't it be reactivated?S-(5 home)
means 5ms pause after shift and before home