Vim for GoogleDocs Works for the most part for both Windows and Mac
git clone https://github.com/vncntt/vimdocs.git
Click on the extensions icon in Google.
Click "Manage extensions".
Turn on developer mode on the top right of your screen.
Click "Load unpacked" on the top left, navigate to where you put the folder and then click "Open". \
- h - move cursor left
- j - move cursor down
- k - move cursor up
- l - move cursor right
- w - jump to next word
- b - jump to prev word
- e - jump to end of word
- 0 - jump to start of line
- implementation is kind of jank. pressing more than one time makes cursor go up when it's supposed to stay in place
- $ - jump to end of line
- gg - jump to first line of document
- G - jump to end of document
- i - insert before cursor
- I - insert at beginning of line
- a - insert after cursor
- A - insert at end of line
- o - open new line before current line
- O - open new line above current line
- same bug as 0
- cw - change word
- x - delete a single character
- r - replace character
- dd - delete entire line
- dw - delete word
- yy - yank line
- v - enter visual mode
- hjklwb in visual mode
- d - delete highlighted text
- c - delete highlighted text + enter insert mode
bugs with visual mode yank
implement yank and paste next time
dd is kind of buggy with lists and just in general