File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
66
7+ ## [ Unreleased]
8+ ### Fixed
9+ - Fixes [ #265 ] ( https://github.com/eamodio/vscode-gitlens/issues/265 ) - Delete line pushes screen to the right (even if word wrap is on)
10+
711## [ 7.5.8] - 2018-01-29
812### Fixed
913- Fixes regression working with submodules
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export enum AnnotationClearReason {
2626export const Decorations = {
2727 blameAnnotation : window . createTextEditorDecorationType ( {
2828 isWholeLine : true ,
29- rangeBehavior : DecorationRangeBehavior . ClosedClosed ,
29+ rangeBehavior : DecorationRangeBehavior . ClosedOpen ,
3030 textDecoration : 'none'
3131 } as DecorationRenderOptions ) ,
3232 blameHighlight : undefined as TextEditorDecorationType | undefined ,
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ const annotationDecoration: TextEditorDecorationType = window.createTextEditorDe
1515 margin : '0 0 0 3em' ,
1616 textDecoration : 'none'
1717 } ,
18- rangeBehavior : DecorationRangeBehavior . ClosedClosed
18+ rangeBehavior : DecorationRangeBehavior . ClosedOpen
1919} as DecorationRenderOptions ) ;
2020
2121class AnnotationState {
You can’t perform that action at this time.
0 commit comments