From 4bd95abe6adb323f91edf022eed51b8084d6d2c6 Mon Sep 17 00:00:00 2001 From: Andy Stewart Date: Thu, 18 Oct 2018 15:39:47 +0100 Subject: [PATCH] Improve comment. --- autoload/gitgutter/sign.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/gitgutter/sign.vim b/autoload/gitgutter/sign.vim index 8bdef6a..4c23dbe 100644 --- a/autoload/gitgutter/sign.vim +++ b/autoload/gitgutter/sign.vim @@ -171,8 +171,8 @@ function! s:upsert_new_gitgutter_signs(bufnr, modified_lines) abort let old_gitgutter_signs = gitgutter#utility#getbufvar(a:bufnr, 'gitgutter_signs') " Handle special case where the first line is the site of two hunks: - " lines deleted above at the start of the file, and lines deleted below from - " the (new) second line down. + " lines deleted above at the start of the file, and lines deleted + " immediately below. if a:modified_lines[0:1] == [[1, 'removed_first_line'], [1, 'removed']] let modified_lines = [[1, 'removed_above_and_below']] + a:modified_lines[2:] else