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

FIx: the fomated tempfiles has fewer lines than orginal files. #14

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: 5 additions & 1 deletion plugin/csscomb.vim
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,15 @@ 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)
if len(lines)<a:line2
let dline = len(lines)+1
exec dline.','.a:line2.'d_'
endif
call setline(a:line1, lines)
endif
endfunction
Expand Down