From 1033745403648918907ee69f680c8e63b2c68783 Mon Sep 17 00:00:00 2001 From: shinjiro-sugita Date: Tue, 28 Jul 2020 02:04:14 +0900 Subject: [PATCH] fix(plugin/gitgutter.vim): Avoid using double-byte characters --- plugin/gitgutter.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/gitgutter.vim b/plugin/gitgutter.vim index 4aee2a4..0576f87 100644 --- a/plugin/gitgutter.vim +++ b/plugin/gitgutter.vim @@ -62,7 +62,7 @@ else call s:set('g:gitgutter_sign_removed_first_line', '_^') endif -call s:set('g:gitgutter_sign_removed_above_and_below', '_‾') +call s:set('g:gitgutter_sign_removed_above_and_below', '_¯') call s:set('g:gitgutter_sign_modified_removed', '~_') call s:set('g:gitgutter_git_args', '') call s:set('g:gitgutter_diff_relative_to', 'index')