aboutsummaryrefslogtreecommitdiff
path: root/runtime/pack/dist/opt/termdebug/plugin
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2022-01-23 18:38:41 +0100
committerGitHub <noreply@github.com>2022-01-23 18:38:41 +0100
commit4ba7fa1700ead8a53d73fea7fc17a545f9b4588d (patch)
treefe19e0a4eafce40046fe3d001710a56c500fe501 /runtime/pack/dist/opt/termdebug/plugin
parent28352dc6e50b9559f32f054c56dc950a79ae45bc (diff)
downloadrneovim-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')
-rw-r--r--runtime/pack/dist/opt/termdebug/plugin/termdebug.vim3
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.