comparison runtime/doc/autocmd.txt @ 5277:42bf9264e64e

Update runtime files.
author Bram Moolenaar <bram@vim.org>
date Sat, 03 Aug 2013 18:35:36 +0200
parents 6b7ab6a4f31a
children 359743c1f59a
comparison
equal deleted inserted replaced
5276:be570e7912d6 5277:42bf9264e64e
1 *autocmd.txt* For Vim version 7.4b. Last change: 2013 Jun 15 1 *autocmd.txt* For Vim version 7.4b. Last change: 2013 Aug 02
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
950 The environment variable is expanded when the autocommand is defined, not when 950 The environment variable is expanded when the autocommand is defined, not when
951 the autocommand is executed. This is different from the command! 951 the autocommand is executed. This is different from the command!
952 952
953 *file-pattern* 953 *file-pattern*
954 The pattern is interpreted like mostly used in file names: 954 The pattern is interpreted like mostly used in file names:
955 * matches any sequence of characters 955 * matches any sequence of characters; Unusal: includes path
956 separators
956 ? matches any single character 957 ? matches any single character
957 \? matches a '?' 958 \? matches a '?'
958 . matches a '.' 959 . matches a '.'
959 ~ matches a '~' 960 ~ matches a '~'
960 , separates patterns 961 , separates patterns