diff --git a/Internal/os_nvim_init.vim b/Internal/os_nvim_init.vim index 0cfac3a..750bdd5 100644 --- a/Internal/os_nvim_init.vim +++ b/Internal/os_nvim_init.vim @@ -303,13 +303,11 @@ command RemedyBGOpenFile call RemedyBGOpenFile() function! RemedyBGStartDebugging() execute("!start remedybg start-debugging " . expand("%:p") . " " . line(".")) - execute("!powershell -Command Add-Type -AssemblyName Microsoft.VisualBasic; [Microsoft.VisualBasic.Interaction]::AppActivate(' - RemedyBG')") endfunction command RemedyBGStartDebugging call RemedyBGStartDebugging() function! RemedyBGStopDebugging() execute("!start remedybg stop-debugging " . expand("%:p") . " " . line(".")) - execute("!powershell -Command Add-Type -AssemblyName Microsoft.VisualBasic; [Microsoft.VisualBasic.Interaction]::AppActivate(' - RemedyBG')") endfunction command RemedyBGStopDebugging call RemedyBGStopDebugging() @@ -409,10 +407,10 @@ 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 :Make ./build.bat + nnoremap :Make ./build.bat else " Set vim terminal to enter normal mode using escape like normal vim behaviour tnoremap - nnoremap :Make ./build.sh + nnoremap :Make ./build.sh set makeprg=./build.sh endif