rcmdnk
rcmdnk
I'm sorry but block-wise select is not possible on apps other than vim, then it is not mapped in vim_ahk. You can disable "paste" at Visual mode by changing "Disable...
I tried on OneNote app version 2412 (build 18324.20168) (Windows11), but Ctrl + mouse does not work. How did you get working block select function?
Ah, I got it. To select multiple block, I shold release after each block selection. It may need to implement something like: * Get cursor position on OneNote in the...
sorry for the late reply I'v tried to remap after including vim_ahk like: ``` #Include %A_LineFile%\..\vim_ahk\vim.ahk HotIf(VimCallback) Hotkey("a", (*) => Vim.Move.Repeat("h")) Hotkey("s", (*) => Vim.Move.Repeat("j")) Hotkey("w", (*) => Vim.Move.Repeat("k")) Hotkey("d",...