X-Git-Url: http://git.iain.cx/?p=profile.git;a=blobdiff_plain;f=.vimrc;h=ad1d7e3c1da392bfd93c4c6f69f73bbd22955018;hp=29b0b6d727813fb73df1eef8804b02d4f938821e;hb=3ce28ece6bb3711826e15d74b1184e8f10476842;hpb=546a2177e8c7dcda6895b25c5f4b0f6e83707e1d diff --git a/.vimrc b/.vimrc index 29b0b6d..ad1d7e3 100644 --- a/.vimrc +++ b/.vimrc @@ -934,9 +934,15 @@ fun! Cycle_Signs(resize) "{{{2 " Define the Mark where Symbol is not also the mark name, eg "']". let g:iainsigns = "Less=< Greater=> Left=( Right=) SquareLeft=[ SquareRight=] BraceLeft={ BraceRight=} a-a b-b c-c d-d e-e f-f A-A B-B C-C D-D E-E F-F" if Has_Unicode() - let g:iainsigns = g:iainsigns . " Quote:\"=” Dash:'=’ Caret:^.ʌ Dot:..• Cursor:o>▶" + let g:iainsigns = g:iainsigns . " Quote:\"=” Dash:'=’ Caret:^.ʌ Dot:..•" + if version < "704" + let g:iainsigns = g:iainsigns ." Cursor:o>▶" + endif else - let g:iainsigns = g:iainsigns . " Quote=\" Dash=' Caret.^ Dot:..* Cursor>o " + let g:iainsigns = g:iainsigns . " Quote=\" Dash=' Caret.^ Dot:..*" + if version < "704" + let g:iainsigns = g:iainsigns ." Cursor>o" + endif endif endif