diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2022-01-23 18:38:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-23 18:38:41 +0100 |
| commit | 4ba7fa1700ead8a53d73fea7fc17a545f9b4588d (patch) | |
| tree | fe19e0a4eafce40046fe3d001710a56c500fe501 /runtime/pack/dist/opt/termdebug/plugin/termdebug.vim | |
| parent | 28352dc6e50b9559f32f054c56dc950a79ae45bc (diff) | |
| download | rneovim-4ba7fa1700ead8a53d73fea7fc17a545f9b4588d.tar.gz rneovim-4ba7fa1700ead8a53d73fea7fc17a545f9b4588d.tar.bz2 rneovim-4ba7fa1700ead8a53d73fea7fc17a545f9b4588d.zip | |
vim-patch:6f4754b9f725 (#17179)
Update runtime files
https://github.com/vim/vim/commit/6f4754b9f7253d7e4ba527064a24aff1acdb1e8f
Diffstat (limited to 'runtime/pack/dist/opt/termdebug/plugin/termdebug.vim')
| -rw-r--r-- | runtime/pack/dist/opt/termdebug/plugin/termdebug.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim index 829e41001b..49d9389773 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 Jan 13 +" Last Change: 2022 Jan 17 " " WORK IN PROGRESS - Only the basics work " Note: On MS-Windows you need a recent version of gdb. The one included with @@ -1344,6 +1344,7 @@ func s:HandleCursor(msg) if lnum =~ '^[0-9]*$' call s:GotoSourcewinOrCreateIt() if expand('%:p') != fnamemodify(fname, ':p') + echomsg 'different fname: "' .. expand('%:p') .. '" vs "' .. fnamemodify(fname, ':p') .. '"' augroup Termdebug " Always open a file read-only instead of showing the ATTENTION " prompt, since we are unlikely to want to edit the file. |