Docs: simplify sign explanation

This commit is contained in:
Marco Hinz 2013-07-08 12:06:54 +02:00
parent 673d17a2da
commit 60105c6779
2 changed files with 14 additions and 20 deletions

View File

@ -66,24 +66,21 @@ Sign explanation
`+` `+`
A new line was added. The sign is shown on the same line as the new line. New line.
`_1` `_1`
A line was deleted. The sign is shown on the line above the deleted line. The Amount of deleted lines. If the number is larger than 9, a `>` will be shown
second character indicates the number of deleted lines: 1-9, and # for instead.
everything above.
`!` `!`
A line was changed. Something was changed, but the amount of lines stayed the Changed line.
same. The sign is shown on the same line.
`!_` `!1`
A line was changed and one or more of the lines below were deleted. A
combination of **!** and **_**. The sign is shown on the same line.
A line was changed and an amount of lines below were deleted. A combination of
`!` and `_`. If the number is larger than 9, a `>` will be shown instead.
`‾` `‾`

View File

@ -60,23 +60,21 @@ Sign explanation:
+ +
A new line was added. The sign is shown on the same line as the new line. New line.
_1 _1
A line was deleted. The sign is shown on the line above the deleted line. The Amount of deleted lines. If the number is larger than 9, a > will be shown
second character indicates the number of deleted lines: 1-9, and # for instead.
everything above.
! !
A line was changed. Something was changed, but the amount of lines stayed the Changed line.
same. The sign is shown on the same line.
!_ !1
A line was changed and one or more of the lines below were deleted. A A line was changed and an amount of lines below were deleted. A combination of
combination of ! and _. The sign is shown on the same line. ! and _. If the number is larger than 9, a > will be shown instead.
@ -170,7 +168,6 @@ Enable line highlighting in addition to using signs by default.
let g:signify_sign_add = '+' let g:signify_sign_add = '+'
let g:signify_sign_change = '!' let g:signify_sign_change = '!'
let g:signify_sign_change_delete = '!_'
let g:signify_sign_delete = '_' let g:signify_sign_delete = '_'
let g:signify_sign_delete_first_line = '‾' let g:signify_sign_delete_first_line = '‾'