From 0b26220edd68f47a2d3d30937f75b360e46d2103 Mon Sep 17 00:00:00 2001 From: Fabio Pelosin Date: Tue, 17 Dec 2013 17:35:44 +0100 Subject: [PATCH] Add investigate.vim --- README.md | 1 + vim/vundles.vim | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 97bdd1f..ce64f68 100644 --- a/README.md +++ b/README.md @@ -187,6 +187,7 @@ of plugins above to learn more. * `Ctrl-s` - Open related spec in a split. Similar to :A and :AV from rails.vim but is also aware of the fast_spec dir and faster to type * `,,w` (alias `,`) or `,,b` (alias `,`) - EasyMotion, a vimperator style tool that highlights jump-points on the screen and lets you type to get there. * `,mc` - mark this word for MultiCursor (like sublime). Use `Ctrl-n` (next), `Ctrl-p` (prev), `Ctrl-x`(skip) to add more cursors, then do normal vim things like edit the word. + * `gK` - Opens the documentation for the word under the cursor. #### File Navigation * `,t` - CtrlP fuzzy file selector diff --git a/vim/vundles.vim b/vim/vundles.vim index fe03c70..2ed2196 100644 --- a/vim/vundles.vim +++ b/vim/vundles.vim @@ -108,6 +108,7 @@ Bundle "terryma/vim-multiple-cursors" "vim-misc is required for vim-session Bundle "xolox/vim-misc" Bundle "xolox/vim-session" +Bundle "Keithbsmiley/investigate.vim" " Text objects Bundle "austintaylor/vim-indentobject"