comparison runtime/doc/version7.txt @ 149:c456a192a00d

updated for version 7.0046
author vimboss
date Mon, 31 Jan 2005 19:21:46 +0000
parents 88256bf8571c
children e91a302ad53a
comparison
equal deleted inserted replaced
148:72aefd4c1e0d 149:c456a192a00d
1 *version7.txt* For Vim version 7.0aa. Last change: 2005 Jan 26 1 *version7.txt* For Vim version 7.0aa. Last change: 2005 Jan 31
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
88 When 'encoding' is set to a Unicode encoding, the value for 'fileencodings' 88 When 'encoding' is set to a Unicode encoding, the value for 'fileencodings'
89 now includes "default" before "latin1". This means that for files with 8-bit 89 now includes "default" before "latin1". This means that for files with 8-bit
90 encodings the default is to use the encoding specified by the environment, if 90 encodings the default is to use the encoding specified by the environment, if
91 possible. Previously latin1 would always be used, which is wrong in a 91 possible. Previously latin1 would always be used, which is wrong in a
92 non-latin1 environment, such as Russian. 92 non-latin1 environment, such as Russian.
93
94 Previously Vim would exit when there are two windows, both of them displaying
95 a help file, and using ":quit". Now only the window is closed.
93 96
94 ============================================================================== 97 ==============================================================================
95 NEW FEATURES *new-7* 98 NEW FEATURES *new-7*
96 99
97 Vim script enhancements *new-vim-script* 100 Vim script enhancements *new-vim-script*
425 ":let g:" lists global variables. 428 ":let g:" lists global variables.
426 ":let b:" lists buffer-local variables. 429 ":let b:" lists buffer-local variables.
427 ":let w:" lists window-local variables. 430 ":let w:" lists window-local variables.
428 ":let v:" lists Vim variables. 431 ":let v:" lists Vim variables.
429 432
430 The stridx() funcion takes a third argument, where to start searching. 433 The stridx() and strridx() functions take a third argument, where to start
431 (Yegappan Lakshmanan) 434 searching. (Yegappan Lakshmanan)
432 435
433 ============================================================================== 436 ==============================================================================
434 COMPILE TIME CHANGES *compile-changes-7* 437 COMPILE TIME CHANGES *compile-changes-7*
435 438
436 Dropped the support for the BeOS and Amiga GUI. They were not maintained and 439 Dropped the support for the BeOS and Amiga GUI. They were not maintained and
711 714
712 When searching backwards, using a pattern that matches a newline and uses \zs 715 When searching backwards, using a pattern that matches a newline and uses \zs
713 after that, didn't find a match. Could also get a hang or end up in the right 716 after that, didn't find a match. Could also get a hang or end up in the right
714 column in the wrong line. 717 column in the wrong line.
715 718
719 When $LANG is "sl" for slovenian, the slovak menu was used, since "slovak"
720 starts with "sl".
721
722 When 'paste' is set in the GUI the Paste toolbar button doesn't work. Clear
723 'paste' when starting the GUI.
724
716 vim:tw=78:ts=8:ft=help:norl: 725 vim:tw=78:ts=8:ft=help:norl: