comparison runtime/doc/version7.txt @ 868:95c5a7508d2d

updated for version 7.0g04
author vimboss
date Fri, 05 May 2006 21:16:59 +0000
parents f41fa84cd738
children 509230ed2036
comparison
equal deleted inserted replaced
867:a5677b7ce858 868:95c5a7508d2d
1 *version7.txt* For Vim version 7.0g. Last change: 2006 May 04 1 *version7.txt* For Vim version 7.0g. Last change: 2006 May 05
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
974 974
975 |TabEnter| just after entering a tab page 975 |TabEnter| just after entering a tab page
976 |TabLeave| just before leaving a tab page 976 |TabLeave| just before leaving a tab page
977 977
978 |VimResized| after the Vim window size changed (Yakov Lerner) 978 |VimResized| after the Vim window size changed (Yakov Lerner)
979
980
981 New highlight groups: ~
982
983 Pmenu Popup menu: normal item |hl-Pmenu|
984 PmenuSel Popup menu: selected item |hl-PmenuSel|
985 PmenuThumb Popup menu: scrollbar |hl-PmenuThumb|
986 PmenuSbar Popup menu: Thumb of the scrollbar |hl-PmenuSbar|
987
988 TabLine tab pages line, inactive label |hl-TabLine|
989 TabLineSel tab pages line, selected label |hl-TabLineSel|
990 TabLineFill tab pages line, filler |hl-TabLineFill|
991
992 SpellBad badly spelled word |hl-SpellBad|
993 SpellCap word with wrong caps |hl-SpellCap|
994 SpellRare rare word |hl-SpellRare|
995 SpellLocal word only exists in other region |hl-SpellLocal|
996
997 CursorColumn 'cursorcolumn' |hl-CursorColumn|
998 CursorLine 'cursorline' |hl-CursorLine|
999
1000 MatchParen matching parens |pi_paren.txt| |hl-MatchParen|
979 1001
980 1002
981 New items in search patterns: ~ 1003 New items in search patterns: ~
982 |/\%d| \%d123 search for character with decimal number 1004 |/\%d| \%d123 search for character with decimal number
983 |/\]| [\d123] idem, in a colletion 1005 |/\]| [\d123] idem, in a colletion
2910 recursively, which could cause a crash. 2932 recursively, which could cause a crash.
2911 2933
2912 exists() could not be used to detect whether ":2match" is supported. Added a 2934 exists() could not be used to detect whether ":2match" is supported. Added a
2913 check for it specifically. 2935 check for it specifically.
2914 2936
2937 GTK1: Tab page labels didn't work. (Yegappan Lakshmanan)
2938
2939 Insert mode completion: When finding matches use 'ignorecase', but when adding
2940 matches to the list don't use it, so that all words with different case are
2941 added, "word", "Word" and "WORD".
2942
2943 When 'cursorline' and 'hlsearch' are set and the search pattern is "x\n"
2944 the rest of the line was highlighted as a match.
2945
2946 Cursor moved while evaluating 'balloonexpr' that invokes ":isearch" and
2947 redirects the output. Don't move the cursor to the command line if msg_silent
2948 is set.
2949
2950 exists() ignored text after a function name and option name, which could
2951 result in false positives.
2952
2953 exists() ignored characters after the recognized word, which can be wrong when
2954 using a name with non-keyword characters. Specifically, these calls no longer
2955 allow characters after the name: exists('*funcname') exists('*funcname(...')
2956 exists('&option') exists(':cmd') exists('g:name') exists('g:name[n]')
2957 exists('g:name.n')
2958
2915 2959
2916 vim:tw=78:ts=8:ft=help:norl: 2960 vim:tw=78:ts=8:ft=help:norl: