Skip to content

Commit

Permalink
110y: disable noshellslash
Browse files Browse the repository at this point in the history
  • Loading branch information
110y committed Nov 5, 2024
1 parent b39cc3e commit 0b81ba8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions autoload/go/util.vim
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ function! go#util#Shelljoin(arglist, ...) abort
endif

let ssl_save = &shellslash
set noshellslash
" set noshellslash
if a:0
return join(map(copy(a:arglist), 'shellescape(v:val, ' . a:1 . ')'), ' ')
endif
Expand All @@ -332,7 +332,7 @@ endfunction
function! go#util#Shelllist(arglist, ...) abort
try
let ssl_save = &shellslash
set noshellslash
" set noshellslash
if a:0
return map(copy(a:arglist), 'go#util#Shelljoin(v:val, ' . a:1 . ')')
endif
Expand Down Expand Up @@ -779,7 +779,7 @@ function! go#util#TestNamesInFile() abort
call cursor(l:line-1, 1)
let l:line = go#util#testLine()
endwhile

call setpos('.', l:startpos)

let l:tests = []
Expand Down

0 comments on commit 0b81ba8

Please sign in to comment.