diff options
author | Teddy Wing | 2015-09-14 06:01:56 -0400 |
---|---|---|
committer | Teddy Wing | 2015-09-14 06:01:56 -0400 |
commit | a4f5db03f4670e627249b30c446674d4f6811a71 (patch) | |
tree | 137f9ab37488d3c31dc3d550ad48c0e91e86008c | |
parent | f944f6b8abbde1bb9e4b38569652324a47a68458 (diff) | |
download | vim-grappele-a4f5db03f4670e627249b30c446674d4f6811a71.tar.bz2 |
Add README
Include a description of the plugin, installation instructions (copied
from one of my other plugins), and license information.
-rw-r--r-- | README.md | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..1461b10 --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +grappele.vim +============ + +Provides a way to repeat the last `G` command. + +Example scenario: + +1. Type 398G +2. Switch to a different buffer +3. Use Grappele's `gG` command to go to line 398 in our new current buffer + +This way if you mistake the currently active window for example, there's an easy +way to get to the right line without having to manually type out the line number +again. + + +## Installation +Install using any of the various Vim plugin managers. If you use +[pathogen](https://github.com/tpope/vim-pathogen), you can run the following to +install: + + cd ~/.vim/bundle + git clone https://github.com/teddywing/vim-grappele.git + + +## License +Licensed under the MIT license. See the included LICENSE file. |