From 8f963a11a3a0bcef3fc3497d9b5e10d046db209b Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Tue, 8 Jun 2021 21:01:21 -0700 Subject: [PATCH] Update README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c376ee1..670dfe4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Vim-ArgWrap # +# Vim-ArgWrap ArgWrap is an industrial strength argument wrapping and unwrapping extension for the Vim text editor. It can be used for collapsing and expanding everything from function calls to array and dictionary definitions. All operations are easily @@ -6,7 +6,7 @@ reversible and correctly preserve the indentation of the surrounding code. ![](https://foosoft.net/projects/vim-argwrap/img/demo.gif) -## Installation ## +## Installation 1. Clone or otherwise download ArgWrap extension. Users of [pathogen.vim](https://github.com/tpope/vim-pathogen) can clone the repository directly to their bundle directory: @@ -23,7 +23,7 @@ reversible and correctly preserve the indentation of the surrounding code. nnoremap a :ArgWrap ``` -## Configuration ## +## Configuration You can customize the behavior of this extension by setting values for any of the following optional *buffer* and *global* configuration variables in your `.vimrc` file. Buffer variables (prefixed with `b:`) take precedence over @@ -218,7 +218,7 @@ file basis using `ftplugin` or `autocmd`. For example, the `argwrap_tail_comma` ) ``` -## Usage ## +## Usage 1. Position the cursor *inside* of the scope of the parenthesis, brackets or curly braces you wish to wrap/unwrap (not on top, before or after them).