-
Notifications
You must be signed in to change notification settings - Fork 11
/
README
28 lines (16 loc) · 834 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
This project implements vi like keys for any arbitrary editor like app on
windows as far as possible.
Eg w es emulated by <c-right> and e is emulated by <c-right> <left>
This is a rewrite of
http://www.autohotkey.com/forum/topic44762.html
cleaning up the code removing much repetition.
TODO:
implement searches:
/?*# (depend on window. Probably ctl-f can be used almost everywhere, but setting forward / backward might be different)
implement visual selection mode (needs state)
implement things like { } etc. Strategy: Copy whole buffer to clipboard, use
shift-END or such to find position of cursor
using this "current" line calculate movement options
Note: Don't think that this comes even close to Vim features. But it works everywhere
TODO:
- make it switch off vi mode if user changes app manually eg by alt-tab