X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=.vimrc;h=db2ed413226580e3406cfdabaefc542471c9816f;hb=d9c5170b2c04449076f00a1cff2c03d12dbe96d2;hp=398e981e8c58bdf0900d8803051886aae7b5dc38;hpb=5f647427f7b00bd2d5c3d5a2f91cb906db7ef32c;p=profile.git diff --git a/.vimrc b/.vimrc index 398e981..db2ed41 100644 --- a/.vimrc +++ b/.vimrc @@ -733,7 +733,7 @@ fun! Highlight_Signs(...) "{{{2 let l:var = tolower(l:name) let l:sign = substitute(l:sign, '^[A-Za-z]\+', "", "") let l:ascii = matchstr(l:sign, '^:.') - let l:mark = substitute(l:sign, '^\(:.\)*[.-=]', "", "") + let l:mark = substitute(l:sign, '^\(:.\)*[.=-]', "", "") if strlen(l:ascii) let l:ascii = substitute(l:ascii, '^:', "", "") else @@ -787,7 +787,7 @@ fun! Cycle_Signs(resize) "{{{2 let l:sign = substitute(l:sign, ':.', "", "") let l:sign = substitute(l:sign, '=', " texthl=MarkSign text=", "") let l:sign = substitute(l:sign, '\.', " texthl=MarkDot text=", "") - let l:sign = substitute(l:sign, '-', " texthl=MarkLine text=", "") + let l:sign = substitute(l:sign, '-', " texthl=MarkLine linehl=MarkLine text=", "") exe "sign define Mark" . l:sign