Skip to content

Commit 1be63d7

Browse files
committed
Use warn function instead of plain echo.
1 parent 275d598 commit 1be63d7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

autoload/gitgutter/hunk.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function! gitgutter#hunk#next_hunk(count)
4343
endif
4444
endif
4545
endfor
46-
echo 'No more hunks'
46+
call gitgutter#utility#warn('No more hunks')
4747
endif
4848
endfunction
4949

@@ -61,7 +61,7 @@ function! gitgutter#hunk#prev_hunk(count)
6161
endif
6262
endif
6363
endfor
64-
echo 'No previous hunks'
64+
call gitgutter#utility#warn('No previous hunks')
6565
endif
6666
endfunction
6767

0 commit comments

Comments
 (0)