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