comparison runtime/doc/eval.txt @ 579:1ef373b13126

updated for version 7.0164
author vimboss
date Wed, 07 Dec 2005 21:04:31 +0000
parents 25a70b1cd2da
children de152391f6f9
comparison
equal deleted inserted replaced
578:8eb0b93ea26c 579:1ef373b13126
1 *eval.txt* For Vim version 7.0aa. Last change: 2005 Dec 06 1 *eval.txt* For Vim version 7.0aa. Last change: 2005 Dec 07
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1270 everything that needs to be done. 1270 everything that needs to be done.
1271 The default is empty. If another (invalid) value is used then 1271 The default is empty. If another (invalid) value is used then
1272 Vim behaves like it is empty, there is no warning message. 1272 Vim behaves like it is empty, there is no warning message.
1273 1273
1274 *v:fname_in* *fname_in-variable* 1274 *v:fname_in* *fname_in-variable*
1275 v:fname_in The name of the input file. Only valid while evaluating: 1275 v:fname_in The name of the input file. Valid while evaluating:
1276 option used for ~ 1276 option used for ~
1277 'charconvert' file to be converted 1277 'charconvert' file to be converted
1278 'diffexpr' original file 1278 'diffexpr' original file
1279 'patchexpr' original file 1279 'patchexpr' original file
1280 'printexpr' file to be printed 1280 'printexpr' file to be printed
1281 And set to the swap file name for |SwapExits|.
1281 1282
1282 *v:fname_out* *fname_out-variable* 1283 *v:fname_out* *fname_out-variable*
1283 v:fname_out The name of the output file. Only valid while 1284 v:fname_out The name of the output file. Only valid while
1284 evaluating: 1285 evaluating:
1285 option used for ~ 1286 option used for ~
1397 :endif 1398 :endif
1398 < "shell_error" also works, for backwards compatibility. 1399 < "shell_error" also works, for backwards compatibility.
1399 1400
1400 *v:statusmsg* *statusmsg-variable* 1401 *v:statusmsg* *statusmsg-variable*
1401 v:statusmsg Last given status message. It's allowed to set this variable. 1402 v:statusmsg Last given status message. It's allowed to set this variable.
1403
1404 *v:swapname* *swapname-variable*
1405 v:swapname Only valid when executing |SwapExists| autocommands: Name of
1406 the swap file found. Read-only.
1407
1408 *v:swapchoice* *swapchoice-variable*
1409 v:swapchoice |SwapExists| autocommands can set this to the selected choice
1410 for handling an existing swap file:
1411 'o' Open read-only
1412 'e' Edit anyway
1413 'r' Recover
1414 'd' Delete swapfile
1415 'q' Quit
1416 'a' Abort
1417 The value should be a single-character string. An empty value
1418 results in the user being asked, as would happen when there is
1419 no SwapExists autocommand. The default is empty.
1402 1420
1403 *v:termresponse* *termresponse-variable* 1421 *v:termresponse* *termresponse-variable*
1404 v:termresponse The escape sequence returned by the terminal for the |t_RV| 1422 v:termresponse The escape sequence returned by the terminal for the |t_RV|
1405 termcap entry. It is set when Vim receives an escape sequence 1423 termcap entry. It is set when Vim receives an escape sequence
1406 that starts with ESC [ or CSI and ends in a 'c', with only 1424 that starts with ESC [ or CSI and ends in a 'c', with only