comparison runtime/pack/dist/opt/matchit/doc/matchit.txt @ 8795:aba2d0a01290

commit https://github.com/vim/vim/commit/7db8f6f4f85e5d0526d23107b2a5e2334dc23354 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 29 23:12:46 2016 +0200 Updated runtime files.
author Christian Brabandt <cb@256bit.org>
date Tue, 29 Mar 2016 23:15:06 +0200
parents 9380c37723f8
children d183d629509e
comparison
equal deleted inserted replaced
8794:c861b4fd579f 8795:aba2d0a01290
2 2
3 For instructions on installing this file, type 3 For instructions on installing this file, type
4 :help matchit-install 4 :help matchit-install
5 inside Vim. 5 inside Vim.
6 6
7 For Vim version 6.3. Last change: 2007 Aug 29 7 For Vim version 6.3. Last change: 2016 Mar 28
8 8
9 9
10 VIM REFERENCE MANUAL by Benji Fisher 10 VIM REFERENCE MANUAL by Benji Fisher
11 11
12 *matchit* *matchit.vim* 12 *matchit* *matchit.vim*
150 setting |b:match_skip|. 150 setting |b:match_skip|.
151 151
152 ============================================================================== 152 ==============================================================================
153 2. Activation *matchit-activate* 153 2. Activation *matchit-activate*
154 154
155 You can use this script as a plugin, by copying it to your plugin directory. 155 To use the matchit plugin add this line to your |vimrc|: >
156 See |add-global-plugin| for instructions. You can also add a line to your 156 packadd! matchit
157 |vimrc| file, such as > 157
158 :source $VIMRUNTIME/macros/matchit.vim 158 The script should start working the next time you start Vim.
159 or >
160 :runtime macros/matchit.vim
161 Either way, the script should start working the next time you start up Vim.
162 159
163 (Earlier versions of the script did nothing unless a |buffer-variable| named 160 (Earlier versions of the script did nothing unless a |buffer-variable| named
164 |b:match_words| was defined. Even earlier versions contained autocommands 161 |b:match_words| was defined. Even earlier versions contained autocommands
165 that set this variable for various file types. Now, |b:match_words| is 162 that set this variable for various file types. Now, |b:match_words| is
166 defined in many of the default |filetype-plugin|s instead.) 163 defined in many of the default |filetype-plugin|s instead.)