-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
22 lines (12 loc) · 742 Bytes
/
README
File metadata and controls
22 lines (12 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
A simple portable Vim keystroke emulating engine targeting for .Net IDEs
Inspired by VsVim(https://github.com/jaredpar/VsVim), put on some personal thoughts on the design, and reinvent the wheel.
Emulating Vim's keystroke behaviours in .Net IDEs
Supported IDE: Visual Studio 2010
Planned: MonoDevelop, SharpDevelop
Implementation Status:
Modes: Normal, Insert
Motions: 'h', 'H', 'j', 'k', 'l', 'L', '0', '^', '$', 'G', 'w', 'W', 'e', 'E', 'b', 'B', '%', "gg", "zz", "[{", "]}"
Simple Editions: '.', 'u', 'U', 'x', 'X', 'i', 'I', 'a', 'A', 's', 'S', 'o', 'O', 'C', 'D', 'J'
Range Editions: 'cX', 'dX', '=X'
Copy & Paste: "yX", 'p', 'P'
Search: 'f', 'F', 't', 'T', '*', '#', 'n', 'N', "/xxx"(a simple dialect, with regex, ignorecase)