]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(termdebug): make TermDebugSendCommand() a global function again
authorDamien Riegel <damien@riegel.io>
Fri, 14 Jun 2024 16:33:17 +0000 (12:33 -0400)
committerChristian Brabandt <cb@256bit.org>
Fri, 14 Jun 2024 18:42:35 +0000 (20:42 +0200)
TermDebugSendCommand lost it's global visibility when converted to
vim9script. Restore it.

Fixes: 23f29ffc6427 ("runtime(termdebug): convert termdebug plugin to
       Vim9 script")
closes: #14997

Signed-off-by: Damien Riegel <damien@riegel.io>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/pack/dist/opt/termdebug/plugin/termdebug.vim

index a1c92ba0b705f13c1cd4e36a565f98479a848595..d6cf327cf8cb8f9fd0072291900b9a62398bf41e 100644 (file)
@@ -4,7 +4,7 @@ vim9script
 
 # Author: Bram Moolenaar
 # Copyright: Vim license applies, see ":help license"
-# Last Change: 2024 Jun 13
+# Last Change: 2024 Jun 14
 # Converted to Vim9: Ubaldo Tiberi <ubaldo.tiberi@gmail.com>
 
 # WORK IN PROGRESS - The basics works stable, more to come
@@ -698,7 +698,7 @@ def ContinueCommand()
 enddef
 
 # This is global so that a user can create their mappings with this.
-def TermDebugSendCommand(cmd: string)
+def g:TermDebugSendCommand(cmd: string)
   if way == 'prompt'
     ch_sendraw(gdb_channel, $"{cmd}\n")
   else