Skip to content

vncntt/vimdocs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vimdocs

Vim for GoogleDocs Works for the most part for both Windows and Mac

Installation

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". \

Cursor movement

  • 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

Entering Insert Mode

  • 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

Change

  • cw - change word

Editing

  • x - delete a single character
  • r - replace character
  • dd - delete entire line
  • dw - delete word
  • yy - yank line

Visual Mode

  • 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

About

Vim for GoogleDocs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published