Updated vimrc
This commit is contained in:
@@ -36,17 +36,17 @@ function! SyntaxCheckers_python_frosted_GetLocList() dict
|
||||
\ 'returns': [0, 1] })
|
||||
|
||||
for e in loclist
|
||||
let e["col"] += 1
|
||||
let e['col'] += 1
|
||||
|
||||
let parts = matchlist(e.text, '\v^([EW]\d+):([^:]*):(.+)')
|
||||
if len(parts) >= 4
|
||||
let e["type"] = parts[1][0]
|
||||
let e["text"] = parts[3] . ' [' . parts[1] . ']'
|
||||
let e["hl"] = '\V\<' . escape(parts[2], '\') . '\>'
|
||||
elseif e["text"] =~? '\v^I\d+:'
|
||||
let e["valid"] = 0
|
||||
let e['type'] = parts[1][0]
|
||||
let e['text'] = parts[3] . ' [' . parts[1] . ']'
|
||||
let e['hl'] = '\V\<' . escape(parts[2], '\') . '\>'
|
||||
elseif e['text'] =~? '\v^I\d+:'
|
||||
let e['valid'] = 0
|
||||
else
|
||||
let e["vcol"] = 0
|
||||
let e['vcol'] = 0
|
||||
endif
|
||||
endfor
|
||||
|
||||
|
||||
Reference in New Issue
Block a user