Is it possible to emulate functionality of vim but desktop-wide? #109
-
This question has just come up at my workplace and after a bit of researching around GitHub I found keymapper. But from the document and examples, I'm still unsure if keymapper can emulate vim. For example, I want to navigate my desktop, applications and web brower by simple keystrokes (without Ctrl, Shift, etc.). I can also switch to input mode for text typing. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 12 replies
-
It surely depends what level of emulation you are hoping to create. Some sort of normal/input mode switching should definitely be possible with the virtual modifier feature. |
Beta Was this translation helpful? Give feedback.
-
Yes, it is possible to emulate Vim-like functionality desktop-wide by using various tools and applications that provide similar keybindings and behaviors to Vim. Here are some ways to achieve Vim-like functionality outside of the Vim editor: 1、Use Vim Keybindings in Other Applications: |
Beta Was this translation helpful? Give feedback.
It's likely too well known since it's old as time. I'm not a gamer myself but my intention was to suggest AutoHotkey for handling window management, like focusing a specific window from a shortcut etc. since Keymapper is focused on remapping keys to other keys. It can run scripts/apps as well but to e.g. bring an app to focus, you'd need to have some utility to do that.
From the last section of my config you'll find some mappings using
i3-msg
to give instructions to i3 window manager. You need to find an equivalent for Windows to be able to do what you describe I believe. Unless of course it's enough to fill the use case by mapping other keys toWin+1-9
that launch/open the apps you've pi…