Skip to content

Commit

Permalink
Run dcd-server with nohup in Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
idanarye committed Nov 16, 2015
1 parent 6e5ac81 commit ca144b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/dutyl/core.vim
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ function! dutyl#core#runToolInBackground(tool,args) abort
if has('win32')
silent execute '!start '.s:createRunToolCommandIgnoreVimproc(a:tool,a:args)
else
silent execute '!'.s:createRunToolCommand(a:tool,a:args).' > /dev/null 2>&1 &'
silent execute '!nohup '.s:createRunToolCommand(a:tool,a:args).' > /dev/null 2>&1 &'
endif
endfunction

Expand Down

0 comments on commit ca144b8

Please sign in to comment.