diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2022-05-10 10:55:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-10 10:55:33 +0200 |
| commit | e50b1fe60d87cbe7798ce921f08ea38a4750fa99 (patch) | |
| tree | 7f6d742ad5fa4e3f40f4978189f6ce55dad2c8f9 /runtime/pack/dist/opt/termdebug/plugin | |
| parent | 5359be78935dc639c481d74f010fe133dd40290c (diff) | |
| download | rneovim-e50b1fe60d87cbe7798ce921f08ea38a4750fa99.tar.gz rneovim-e50b1fe60d87cbe7798ce921f08ea38a4750fa99.tar.bz2 rneovim-e50b1fe60d87cbe7798ce921f08ea38a4750fa99.zip | |
vim-patch:921bde888046 (#18511)
Update runtime files, translations
https://github.com/vim/vim/commit/921bde88804663a7cb825d7f7e8a5d8ae6b58650
skip: translations
skip: builtin.txt (requires 8.2.4861)
Diffstat (limited to 'runtime/pack/dist/opt/termdebug/plugin')
| -rw-r--r-- | runtime/pack/dist/opt/termdebug/plugin/termdebug.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim index ab1871fe60..4f2f7b942d 100644 --- a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim +++ b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim @@ -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 |