mirror of
https://github.com/vim/vim.git
synced 2025-10-09 06:14:17 -04:00
updated for version 7.0104
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
*eval.txt* For Vim version 7.0aa. Last change: 2005 Jul 03
|
*eval.txt* For Vim version 7.0aa. Last change: 2005 Jul 06
|
||||||
|
|
||||||
|
|
||||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||||
@@ -6470,7 +6470,7 @@ These items are not allowed in the sandbox:
|
|||||||
This is not guaranteed 100% secure, but it should block most attacks.
|
This is not guaranteed 100% secure, but it should block most attacks.
|
||||||
|
|
||||||
*:san* *:sandbox*
|
*:san* *:sandbox*
|
||||||
:sandbox {cmd} Execute {cmd} in the sandbox. Useful to evaluate an
|
:san[dbox] {cmd Execute {cmd} in the sandbox. Useful to evaluate an
|
||||||
option that may have been set from a modeline, e.g.
|
option that may have been set from a modeline, e.g.
|
||||||
'foldexpr'.
|
'foldexpr'.
|
||||||
|
|
||||||
|
@@ -5148,7 +5148,6 @@ hebrew hebrew.txt /*hebrew*
|
|||||||
hebrew.txt hebrew.txt /*hebrew.txt*
|
hebrew.txt hebrew.txt /*hebrew.txt*
|
||||||
help various.txt /*help*
|
help various.txt /*help*
|
||||||
help-context help.txt /*help-context*
|
help-context help.txt /*help-context*
|
||||||
help-tags tags 1
|
|
||||||
help-translated various.txt /*help-translated*
|
help-translated various.txt /*help-translated*
|
||||||
help-xterm-window various.txt /*help-xterm-window*
|
help-xterm-window various.txt /*help-xterm-window*
|
||||||
help.txt help.txt /*help.txt*
|
help.txt help.txt /*help.txt*
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
" Vim indent file
|
" Vim indent file
|
||||||
" Language: Vim script
|
" Language: Vim script
|
||||||
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
||||||
" Last Change: 2005 Jun 16
|
" Last Change: 2005 Jul 06
|
||||||
|
|
||||||
" Only load this indent file when no other was loaded.
|
" Only load this indent file when no other was loaded.
|
||||||
if exists("b:did_indent")
|
if exists("b:did_indent")
|
||||||
@@ -52,9 +52,14 @@ function GetVimIndent()
|
|||||||
|
|
||||||
" If the previous line contains an "end" after a pipe, but not in an ":au"
|
" If the previous line contains an "end" after a pipe, but not in an ":au"
|
||||||
" command. And not when there is a backslash before the pipe.
|
" command. And not when there is a backslash before the pipe.
|
||||||
if getline(lnum) =~ '[^\\]|\s*\(ene\@!\)' && getline(lnum) !~ '^\s*au\%[tocmd]'
|
" And when syntax HL is enabled avoid a match inside a string.
|
||||||
|
let line = getline(lnum)
|
||||||
|
let i = match(line, '[^\\]|\s*\(ene\@!\)')
|
||||||
|
if i > 0 && line !~ '^\s*au\%[tocmd]'
|
||||||
|
if !has('syntax_items') || synIDattr(synID(lnum, i + 2, 1), "name") !~ '\(Comment\|String\)$'
|
||||||
let ind = ind - &sw
|
let ind = ind - &sw
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
" Subtract a 'shiftwidth' on a :endif, :endwhile, :catch, :finally, :endtry,
|
" Subtract a 'shiftwidth' on a :endif, :endwhile, :catch, :finally, :endtry,
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
" You can also use this as a start for your own set of menus.
|
" You can also use this as a start for your own set of menus.
|
||||||
"
|
"
|
||||||
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
||||||
" Last Change: 2005 Jun 28
|
" Last Change: 2005 Jul 06
|
||||||
|
|
||||||
" Note that ":an" (short for ":anoremenu") is often used to make a menu work
|
" Note that ":an" (short for ":anoremenu") is often used to make a menu work
|
||||||
" in all modes and avoid side effects from mappings defined by the user.
|
" in all modes and avoid side effects from mappings defined by the user.
|
||||||
@@ -412,7 +412,7 @@ if has("spell")
|
|||||||
an 40.335.110 &Tools.&Spelling.&Spell\ Check\ On :set spell<CR>
|
an 40.335.110 &Tools.&Spelling.&Spell\ Check\ On :set spell<CR>
|
||||||
an 40.335.120 &Tools.&Spelling.Spell\ Check\ &Off :set nospell<CR>
|
an 40.335.120 &Tools.&Spelling.Spell\ Check\ &Off :set nospell<CR>
|
||||||
an 40.335.130 &Tools.&Spelling.To\ &Next\ error<Tab>]s ]s
|
an 40.335.130 &Tools.&Spelling.To\ &Next\ error<Tab>]s ]s
|
||||||
an 40.335.130 &Tools.&Spelling.To\ &Pevious\ error<Tab>[s [s
|
an 40.335.130 &Tools.&Spelling.To\ &Previous\ error<Tab>[s [s
|
||||||
an 40.335.140 &Tools.&Spelling.Suggest\ &Corrections<Tab>z? z?
|
an 40.335.140 &Tools.&Spelling.Suggest\ &Corrections<Tab>z? z?
|
||||||
an 40.335.150 &Tools.&Spelling.&Repeat\ correction<Tab>:spellrepall :spellrepall<CR>
|
an 40.335.150 &Tools.&Spelling.&Repeat\ correction<Tab>:spellrepall :spellrepall<CR>
|
||||||
an 40.335.200 &Tools.&Spelling.-SEP1- <Nop>
|
an 40.335.200 &Tools.&Spelling.-SEP1- <Nop>
|
||||||
|
Binary file not shown.
@@ -36,5 +36,5 @@
|
|||||||
#define VIM_VERSION_NODOT "vim70aa"
|
#define VIM_VERSION_NODOT "vim70aa"
|
||||||
#define VIM_VERSION_SHORT "7.0aa"
|
#define VIM_VERSION_SHORT "7.0aa"
|
||||||
#define VIM_VERSION_MEDIUM "7.0aa ALPHA"
|
#define VIM_VERSION_MEDIUM "7.0aa ALPHA"
|
||||||
#define VIM_VERSION_LONG "VIM - Vi IMproved 7.0aa ALPHA (2005 Jul 5)"
|
#define VIM_VERSION_LONG "VIM - Vi IMproved 7.0aa ALPHA (2005 Jul 6)"
|
||||||
#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.0aa ALPHA (2005 Jul 5, compiled "
|
#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.0aa ALPHA (2005 Jul 6, compiled "
|
||||||
|
Reference in New Issue
Block a user