Skip to content

Commit fe6a343

Browse files
xltantpope
authored andcommitted
Keep HOME env, or fish will raise warning
1 parent 3757dda commit fe6a343

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/dispatch.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ function! dispatch#set_title(request) abort
328328
endfunction
329329

330330
function! dispatch#isolate(request, keep, ...) abort
331-
let keep = ['SHELL'] + a:keep
331+
let keep = ['SHELL', 'HOME'] + a:keep
332332
let command = ['cd ' . shellescape(getcwd())]
333333
for line in split(system('env'), "\n")
334334
let var = matchstr(line, '^\w\+\ze=')

0 commit comments

Comments
 (0)