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

Delete and append instead of setline, to prevent bug when result line… #12

Open
wants to merge 3 commits into
base: master
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
6 changes: 4 additions & 2 deletions plugin/csscomb.vim
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ function! g:CSScomb(count, line1, line2)

let tempFile = tempname() . '.' . &filetype
call writefile(content, tempFile)
let systemOutput = system('csscomb ' . shellescape(tempFile))
let systemOutput = system('csscomb -c ~/.csscomb.json ' . shellescape(tempFile))
if len(systemOutput)
echoerr split(systemOutput, "\n")[1]
else
let lines = readfile(tempFile)
call setline(a:line1, lines)
exec a:line1.",".a:line2."delete"
let a:line0 = a:line1-1
call append(a:line0, lines)
endif
endfunction

Expand Down