Updated vimrc

This commit is contained in:
amix
2015-07-13 11:22:46 +01:00
parent 9a2843c2a5
commit d7752b59ae
301 changed files with 4699 additions and 7969 deletions

View File

@@ -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