pit-ray

Results 157 comments of pit-ray

I didn't know about that script, but I think it can be easily implemented since Windows provides an API to control virtual desktops. Currently, only key2key is supported, so there...

That's right. The the interval time of synchronous timer is hard-coded. https://github.com/pit-ray/win-vind/blob/12ea669c77d62f0b30d677f9de66229d1421287c/src/core/entry.cpp#L113 In this implementation, the main process read the function name periodically in the shared memoris and the sub...

Simple commands encompass more complex commands. This issue is fundamentally the same as #83. Thanks.

It is possible to implement a distinction, but currently no such functionality is available. If I only activate when release ESC, does that mean we have to press and hold...

Thanks for the suggestion. This seems to make a lot of sense. The current automatic mode change is terrible, like a toy, so needs to be enhanced. I have two...

Now, let's make 1) an exe name so that it will be recognized as a path if we put `/` or `\\`. With 2), the .vimrc format is used for...

(#89, #100) I plan to employ automatic commands using events like Vim. For example, in the following format. ```vim autocmd AppSelect edge to_insert autocmd AppSelect mspaint.exe to_gui_normal autocmd AppSelect "C:\Program...

@gilbh How about using regular expressions like in Vim? ```vim autocmd AppSelect * to_insert autocmd AppSelect *vim to_resident ```

@gilbh After careful consideration, the default value using `autocmd AppSelect *`was indeed a bad idea. I want Vim users not to have to learn anything new, so I would to...

Now then, I'll implement along this policy.