pit-ray

Results 165 comments of pit-ray

> I just now tried switching windows using and the result it the same: the window panel appears, but the selection jumps to the first window and stays there, and...

I make it open for the milestone.

@gilbh It is an assumed specification that `switch_windows` is determined by Esc or Enter. https://github.com/pit-ray/win-vind/blob/443abf8be0e892de2d92fc268e84de9d3cb2eacd/src/bind/window/switch_win.cpp#L110-L115

@petertheprocess Adding shortcut keys is possible by creating a macro using map. ref. https://pit-ray.github.io/win-vind/usage/#3-customize-win-vind For example, the following generates `` with `f` in Insert mode. ```vim imap f ``` Thanks.

@petertheprocess win-vind uses `map` as the mapping to pass to the system and `noremap` as the internal mapping. Therefore, please try `gnmap`.

You can double-click like `2FF` or `2o`. Thanks.

I am not sure if it is possible to get the coordinates of the caret. Previously, I tried to get the coordinates using the Windows API, but some applications could...

I designed an abstract mapping flow. ![map_noremap_integration](https://user-images.githubusercontent.com/42631247/183894711-d93d0f73-c177-4147-8be0-1d9e5a356599.png) In this flow, the main actor is MapSolver, which solve noremap and map recursively and uses it to match the current input. At...

TODO - [x] Implement new mapping parser - [x] Add CmdUnit - [x] Add a new class to solve and map (MapSolver). - [x] Implement a class to count the...