I'm a bit confused what the intended use case is, here. Is the idea to have it loaded on your tablet while programming on your laptop or desktop so you don't have to switch screens? Why not just print it out and pin it to the wall?
I made a similar cheat sheet years ago as a PDF. It got some popularity around the developer community. I think it being html/an open source document, you can use it in many different ways (including printing it out and putting it on your wall). The fact that I have already received pull request I think shows it might be a good idea.
gg - top of file
G - end of file
5gg - go to line 5 (I find this easier than 5G)
ciw - delete current word and enter insert mode
yiw - copy current word
zz - center cursor (its also nice to remap G to Gzz etc)
Not quite: cw deletes until the end of the current word from the current position and then enters insert mode. ciw deletes the entire your current position is in and enters insert mode. Go ahead and try them.
19 comments
[ 3.2 ms ] story [ 56.9 ms ] threadEDIT: Looks like someone had a pull request for it. Merged.
I find 'C' simpler for that command.
'c$' OR 'C' = change to end of line
'd$' OR 'D' = cut to end of line
'y$' = yank to end of line
'cc' = change entire line
'dd' = cut entire line
'yy' OR 'Y' = yank entire line
Also a nice one is :Sex
For splitting windows and navigating the file system.