comparison runtime/doc/editing.txt @ 8:7edf9b6e4c36

Various changes
author vimboss
date Wed, 16 Jun 2004 11:19:22 +0000
parents 3fc0f57ecb91
children 4102fb4ea781
comparison
equal deleted inserted replaced
7:3fc0f57ecb91 8:7edf9b6e4c36
1 *editing.txt* For Vim version 7.0aa. Last change: 2004 Apr 28 1 *editing.txt* For Vim version 7.0aa. Last change: 2004 Jun 14
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
336 expanded by the shell before executing the find program. 336 expanded by the shell before executing the find program.
337 This also works for most other systems, with the restriction that the 337 This also works for most other systems, with the restriction that the
338 backticks must be around the whole item. It is not possible to have text 338 backticks must be around the whole item. It is not possible to have text
339 directly before the first or just after the last backtick. 339 directly before the first or just after the last backtick.
340 340
341 *`=*
341 You can have the backticks expanded as a Vim expression, instead of 342 You can have the backticks expanded as a Vim expression, instead of
342 an external command, by using the syntax `={expr}` e.g. > 343 an external command, by using the syntax `={expr}` e.g. >
343 :let foo='bar' 344 :let foo='bar'
344 :e `=foo . ".c" ` 345 :e `=foo . ".c" `
345 edits "bar.c". Note that the expression cannot contain a backtick. 346 edits "bar.c". Note that the expression cannot contain a backtick.