mirror of
https://github.com/neovim/neovim.git
synced 2025-09-11 13:58:18 +00:00
vim-patch:71badf9547e8 (#23285)
Update runtime files
71badf9547
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
@@ -910,7 +910,7 @@ func s:InstallCommands()
|
||||
command Program call s:GotoProgram()
|
||||
command Source call s:GotoSourcewinOrCreateIt()
|
||||
command Asm call s:GotoAsmwinOrCreateIt()
|
||||
command Winbar call s:InstallWinbar()
|
||||
command Winbar call s:InstallWinbar(1)
|
||||
|
||||
let map = 1
|
||||
if exists('g:termdebug_config')
|
||||
@@ -931,14 +931,7 @@ func s:InstallCommands()
|
||||
endif
|
||||
|
||||
if has('menu') && &mouse != ''
|
||||
" install the window toolbar by default, can be disabled in the config
|
||||
let winbar = 1
|
||||
if exists('g:termdebug_config')
|
||||
let winbar = get(g:termdebug_config, 'winbar', 1)
|
||||
endif
|
||||
if winbar
|
||||
call s:InstallWinbar()
|
||||
endif
|
||||
call s:InstallWinbar(0)
|
||||
|
||||
let popup = 1
|
||||
if exists('g:termdebug_config')
|
||||
@@ -963,7 +956,7 @@ endfunc
|
||||
" let s:winbar_winids = []
|
||||
|
||||
" Install the window toolbar in the current window.
|
||||
func s:InstallWinbar()
|
||||
func s:InstallWinbar(force)
|
||||
" if has('menu') && &mouse != ''
|
||||
" nnoremenu WinBar.Step :Step<CR>
|
||||
" nnoremenu WinBar.Next :Over<CR>
|
||||
@@ -1370,7 +1363,7 @@ func s:GotoSourcewinOrCreateIt()
|
||||
func s:GotoSourcewinOrCreateIt()
|
||||
if !win_gotoid(s:sourcewin)
|
||||
new
|
||||
let s:sourcewin = win_getid(winnr())
|
||||
let s:sourcewin = win_getid(winnr())
|
||||
call s:InstallWinbar(0)
|
||||
endif
|
||||
endfunc
|
||||
@@ -1493,7 +1486,7 @@ func s:HandleCursor(msg)
|
||||
if &modified
|
||||
" TODO: find existing window
|
||||
exe 'split ' . fnameescape(fname)
|
||||
let s:sourcewin = win_getid(winnr())
|
||||
let s:sourcewin = win_getid(winnr())
|
||||
call s:InstallWinbar(0)
|
||||
else
|
||||
exe 'edit ' . fnameescape(fname)
|
||||
|
Reference in New Issue
Block a user