mirror of
https://github.com/vim/vim.git
synced 2025-10-02 05:04:20 -04:00
updated for version 7.1-163
This commit is contained in:
@@ -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: 2007 Jan 09
|
" Last Change: 2007 Nov 19
|
||||||
|
|
||||||
" 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.
|
||||||
@@ -658,7 +658,6 @@ func! s:BMShow(...)
|
|||||||
let buf = 1
|
let buf = 1
|
||||||
while buf <= bufnr('$')
|
while buf <= bufnr('$')
|
||||||
if bufexists(buf) && !isdirectory(bufname(buf)) && buflisted(buf)
|
if bufexists(buf) && !isdirectory(bufname(buf)) && buflisted(buf)
|
||||||
\ && !getbufvar(buf, "&bufsecret")
|
|
||||||
let s:bmenu_count = s:bmenu_count + 1
|
let s:bmenu_count = s:bmenu_count + 1
|
||||||
endif
|
endif
|
||||||
let buf = buf + 1
|
let buf = buf + 1
|
||||||
@@ -671,7 +670,6 @@ func! s:BMShow(...)
|
|||||||
let buf = 1
|
let buf = 1
|
||||||
while buf <= bufnr('$')
|
while buf <= bufnr('$')
|
||||||
if bufexists(buf) && !isdirectory(bufname(buf)) && buflisted(buf)
|
if bufexists(buf) && !isdirectory(bufname(buf)) && buflisted(buf)
|
||||||
\ && !getbufvar(buf, "&bufsecret")
|
|
||||||
call <SID>BMFilename(bufname(buf), buf)
|
call <SID>BMFilename(bufname(buf), buf)
|
||||||
endif
|
endif
|
||||||
let buf = buf + 1
|
let buf = buf + 1
|
||||||
|
@@ -666,6 +666,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
163,
|
||||||
/**/
|
/**/
|
||||||
162,
|
162,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user