Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use array format for commands #7

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions blink.vim
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function! blink#install(url,update=0)
endif
let url = "https://github.com/".a:url."/archive/".branch.".tar.gz"
call appendbufline(s:blink_window, '$', "Downloading ".a:url."/archive/".branch.".tar.gz...")
let cmd = "curl -fLo ".s:blink_path."/".pluginname."-".branch."-".commit.".tgz ".url
let cmd = ["curl", "-fLo", s:blink_path."/".pluginname."-".branch."-".commit.".tgz", url]
let active_job = { 'plugin': a:url, 'branch': branch, 'commit': commit, 'name': pluginname }
let job = job_start(cmd, {'err_cb': 's:curlProgress','exit_cb': 's:Done', 'err_mode': 'raw'})
let active_job.job = job
Expand All @@ -95,7 +95,7 @@ endfunction

function! blink#ghBranch(url)
let url = "https://github.com/".a:url."/refs?type=branch"
let cmd = "curl -s -H 'accept: application/json' ".url
let cmd = ["curl", "-sL", "-H", "accept: application/json", url]
let job = job_start(cmd)
while job_status(job) == 'run'
endwhile
Expand All @@ -116,7 +116,7 @@ endfunction

function! blink#ghLastCommit(url, branch)
let url = "https://github.com/".a:url."/latest-commit/".a:branch
let cmd = "curl -s -H 'accept: application/json' ".url
let cmd = ["curl", "-sL", "-H", "accept: application/json", url]
let job = job_start(cmd)
while job_status(job) == 'run'
endwhile
Expand Down Expand Up @@ -196,7 +196,7 @@ function s:unpack(job)
"echom "Extracting plugin: ".plugin
call setbufline(s:blink_window, '$', 'Extracting: '.plugin)
call mkdir(s:blink_path."/opt/".name,"p")
let cmd = "tar xf ".s:blink_path."/".name."-".branch."-".commit.".tgz --strip-components=1 -C ".s:blink_path."/opt/".name
let cmd = ["tar", "xf", s:blink_path."/".name."-".branch."-".commit.".tgz", "--strip-components=1", "-C", s:blink_path."/opt/".name]
let job = job_start(cmd, {'exit_cb': 's:Finish'})
let a:job.job = job
endfunction
Expand Down