summaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index f6d8551..d5d174e 100644
--- a/vimrc
+++ b/vimrc
@@ -168,7 +168,7 @@ function! GitBlameCurrentLine()
let l:wd = expand("%:p:h")
let content = system("cd " . l:wd . ";git blame -L ". l:line . "," . l:line . " " . l:file . " | sed 's/).*/)/'")
let line = split(content, '\n')[0]
- echohl Type | echo line | echohl None
+ echohl WarningMsg | echo line | echohl None
endfunction
command! GitBlameCurrentLine :call GitBlameCurrentLine()
map <ESC>b :GitBlameCurrentLine<CR>