comparison runtime/doc/cmdline.txt @ 7147:c590de398af9

commit https://github.com/vim/vim/commit/ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 25 20:34:21 2015 +0200 Update various runtime files.
author Christian Brabandt <cb@256bit.org>
date Fri, 25 Sep 2015 20:45:09 +0200
parents 64e30831fa42
children aea5ebf352c4
comparison
equal deleted inserted replaced
7146:274adc0c2140 7147:c590de398af9
1 *cmdline.txt* For Vim version 7.4. Last change: 2015 Jul 28 1 *cmdline.txt* For Vim version 7.4. Last change: 2015 Sep 25
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
816 which this autocommand was executed. It differs from 816 which this autocommand was executed. It differs from
817 <afile> only when the file name isn't used to match with 817 <afile> only when the file name isn't used to match with
818 (for FileType, Syntax and SpellFileMissing events). 818 (for FileType, Syntax and SpellFileMissing events).
819 <sfile> When executing a ":source" command, is replaced with the 819 <sfile> When executing a ":source" command, is replaced with the
820 file name of the sourced file. *E498* 820 file name of the sourced file. *E498*
821 When executing a function, is replaced with 821 When executing a function, is replaced with:
822 "function {function-name}"; function call nesting is 822 "function {function-name}[{lnum}]"
823 indicated like this: 823 function call nesting is indicated like this:
824 "function {function-name1}..{function-name2}". Note that 824 "function {function-name1}[{lnum}]..{function-name2}[{lnum}]"
825 filename-modifiers are useless when <sfile> is used inside 825 Note that filename-modifiers are useless when <sfile> is
826 a function. 826 used inside a function.
827 <slnum> When executing a ":source" command, is replaced with the 827 <slnum> When executing a ":source" command, is replaced with the
828 line number. *E842* 828 line number. *E842*
829 When executing a function it's the line number relative to 829 When executing a function it's the line number relative to
830 the start of the function. 830 the start of the function.
831 831