Compare commits

..

3 Commits

Author SHA1 Message Date
doylet
7262b36bf6 linux: Add Go checksum for 1.20.1 2023-09-05 15:20:18 +10:00
doylet
eb168cc99b Use installed MSVC 2023-09-05 15:20:18 +10:00
doyle
0c0c506cfa Add go 1.20.1 2023-09-05 15:20:18 +10:00
2 changed files with 10 additions and 22 deletions

View File

@ -309,31 +309,31 @@ augroup persistent_settings
augroup end
function! RemedyBGOpenFile()
execute("Spawn! remedybg open-file " . expand("%:p") . " " . line("."))
execute("!start remedybg open-file " . expand("%:p") . " " . line("."))
execute("!powershell -Command Add-Type -AssemblyName Microsoft.VisualBasic; [Microsoft.VisualBasic.Interaction]::AppActivate(' - RemedyBG')")
endfunction
command RemedyBGOpenFile call RemedyBGOpenFile()
function! RemedyBGStartDebugging()
execute("Spawn! start remedybg start-debugging " . expand("%:p") . " " . line("."))
execute("!start remedybg start-debugging " . expand("%:p") . " " . line("."))
endfunction
command RemedyBGStartDebugging call RemedyBGStartDebugging()
function! RemedyBGStopDebugging()
execute("Spawn! remedybg stop-debugging " . expand("%:p") . " " . line("."))
execute("!start remedybg stop-debugging " . expand("%:p") . " " . line("."))
endfunction
command RemedyBGStopDebugging call RemedyBGStopDebugging()
function! RemedyBGRunToCursor()
execute("Spawn! remedybg open-file " . expand("%:p") . " " . line("."))
execute("Spawn! remedybg run-to-cursor " . expand("%:p") . " " . line("."))
execute("!start remedybg open-file " . expand("%:p") . " " . line("."))
execute("!start remedybg run-to-cursor " . expand("%:p") . " " . line("."))
execute("!powershell -Command Add-Type -AssemblyName Microsoft.VisualBasic; [Microsoft.VisualBasic.Interaction]::AppActivate(' - RemedyBG')")
endfunction
command RemedyBGRunToCursor call RemedyBGRunToCursor()
function! RemedyBGAddBreakpointAtFile()
execute("Spawn! remedybg open-file " . expand("%:p") . " " . line("."))
execute("Spawn! remedybg add-breakpoint-at-file " . expand("%:p") . " " . line("."))
execute("!start remedybg open-file " . expand("%:p") . " " . line("."))
execute("!start remedybg add-breakpoint-at-file " . expand("%:p") . " " . line("."))
execute("!powershell -Command Add-Type -AssemblyName Microsoft.VisualBasic; [Microsoft.VisualBasic.Interaction]::AppActivate(' - RemedyBG')")
endfunction
command RemedyBGAddBreakpointAtFile call RemedyBGAddBreakpointAtFile()
@ -435,11 +435,11 @@ set errorformat+=%\\%%(CTIME%\\)%\\@=%m " ctime.exe -stat
" ==============================================================================
let s:running_windows = has("win16") || has("win32") || has("win64")
if s:running_windows
set makeprg=build
nnoremap <C-b> :Make ./build.bat<cr>
set makeprg=./build.bat
else
" Set vim terminal to enter normal mode using escape like normal vim behaviour
tnoremap <Esc> <C-\><C-n>
nnoremap <C-b> :Make ./build.sh<cr>
set makeprg=./build.sh
endif
nnoremap <C-b> :Make<cr>

View File

@ -1,12 +0,0 @@
@echo off
setlocal
set desired_path=%devenver_root%\..\..\Cryptomator\Dev\Win\RemedyBG\0_3_9_4
set desired_exe=remedybg.exe
set path=%desired_path%;%path%
set exe_to_use=""
for /f "delims=" %%a in ('where "$desired_path:%desired_exe%"') do ( set "exe_to_use=%%a")
echo [DEVENVER] Executing script "%~dpnx0" with "%exe_to_use%"
call %desired_exe% %*
endlocal