File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -818,6 +818,24 @@ local print_loc_code_generation = {
818818 lua = function (opts )
819819 return ([[ print([==[%s]==])]] ):format (opts .debug_path )
820820 end ,
821+ c = function (opts )
822+ return ([[ printf("%s\n");]] ):format (opts .debug_path )
823+ end ,
824+ javascript = function (opts )
825+ return ([[ console.log("%s")]] ):format (opts .debug_path )
826+ end ,
827+ powershell = function (opts )
828+ return ([[ Write-Host '%s']] ):format (opts .debug_path )
829+ end ,
830+ python = function (opts )
831+ return ([[ print(f"%s")]] ):format (opts .debug_path )
832+ end ,
833+ vim = function (opts )
834+ return ([[ echom '%s'|]] ):format (opts .debug_path )
835+ end ,
836+ go = function (opts )
837+ return ([[ fmt.Println("%s")]] ):format (opts .debug_path )
838+ end ,
821839 },
822840}
823841
You can’t perform that action at this time.
0 commit comments