mirror of
https://github.com/neovim/neovim.git
synced 2025-09-11 13:58:18 +00:00
vim-patch:921bde888046 (#18511)
Update runtime files, translations
921bde8880
skip: translations
skip: builtin.txt (requires 8.2.4861)
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
"
|
||||
" Author: Bram Moolenaar
|
||||
" Copyright: Vim license applies, see ":help license"
|
||||
" Last Change: 2022 May 04
|
||||
" Last Change: 2022 May 09
|
||||
"
|
||||
" WORK IN PROGRESS - The basics works stable, more to come
|
||||
" Note: In general you need at least GDB 7.12 because this provides the
|
||||
@@ -205,8 +205,8 @@ func s:CheckGdbRunning()
|
||||
return 'ok'
|
||||
endfunc
|
||||
|
||||
" Open a terminal window without a job, to run the debugged program in.
|
||||
func s:StartDebug_term(dict)
|
||||
" Open a terminal window without a job, to run the debugged program in.
|
||||
execute s:vertical ? 'vnew' : 'new'
|
||||
let s:pty_job_id = termopen('tail -f /dev/null;#gdb program')
|
||||
if s:pty_job_id == 0
|
||||
@@ -365,8 +365,8 @@ func s:StartDebug_term(dict)
|
||||
call s:StartDebugCommon(a:dict)
|
||||
endfunc
|
||||
|
||||
" Open a window with a prompt buffer to run gdb in.
|
||||
func s:StartDebug_prompt(dict)
|
||||
" Open a window with a prompt buffer to run gdb in.
|
||||
if s:vertical
|
||||
vertical new
|
||||
else
|
||||
|
Reference in New Issue
Block a user