From 1be63d780c76a4df116e494a212805316d23a91f Mon Sep 17 00:00:00 2001 From: Andy Stewart Date: Tue, 10 Mar 2015 12:10:17 +0100 Subject: [PATCH] Use warn function instead of plain echo. --- autoload/gitgutter/hunk.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/gitgutter/hunk.vim b/autoload/gitgutter/hunk.vim index 67cc5af..3d67c5e 100644 --- a/autoload/gitgutter/hunk.vim +++ b/autoload/gitgutter/hunk.vim @@ -43,7 +43,7 @@ function! gitgutter#hunk#next_hunk(count) endif endif endfor - echo 'No more hunks' + call gitgutter#utility#warn('No more hunks') endif endfunction @@ -61,7 +61,7 @@ function! gitgutter#hunk#prev_hunk(count) endif endif endfor - echo 'No previous hunks' + call gitgutter#utility#warn('No previous hunks') endif endfunction