Is it possible to match Vim key bindings for windows, just like vimium for chrome

Can I map Vim key bindings to windows? like vimium for chromium. Sometimes I don’t like the mouse. using vimium, I can press “f” to create “names” for the link, and just click the name to open the link, this is awesome!

+5
source share
4 answers

I don’t know any existing tools, but macro tools like AutoHotkey allow this. For a purely modal solution like Vim, you need to save the state of the mode (and probably also specify it somehow), which is difficult. Creating virtual functions with autohotkey ahk describes a solution (for navigation) that relies on another simultaneously pressed key.

+3
source

This is an AutoHotKey script that implements some vim features in all applications.

LabelControl also provides some label support, such as vimium, but this is not always useful.

+1
source

To answer the question: Yes, and there are several, but they have limitations. The best way I know is to use AutoHotkey , which you can use to add several Vim features.

Due to the way the Vim commands work, this is only partially possible, as implemented in several forms. For a few examples, you can search for example. "autohotkey vim" .

+1
source

you can use hunt-n-peck .

You must download binaries from continuous integration artifacts.

these are hunt-n-peck zip link HuntAndPeck binaries taken from artifacts of continuous repository integration.

+1
source

Source: https://habr.com/ru/post/1212672/


All Articles