Correct FixIt chunks sorting
This commit is contained in:
parent
17f5f20cd6
commit
8c17995bee
@ -466,9 +466,8 @@ def ReplaceChunksList( chunks, vim_buffer = None ):
|
|||||||
# We need to track the difference in length, but ensuring we apply fixes
|
# We need to track the difference in length, but ensuring we apply fixes
|
||||||
# in ascending order of insertion point.
|
# in ascending order of insertion point.
|
||||||
chunks.sort( key = lambda chunk: (
|
chunks.sort( key = lambda chunk: (
|
||||||
str( chunk[ 'range' ][ 'start' ][ 'line_num' ] )
|
chunk[ 'range' ][ 'start' ][ 'line_num' ],
|
||||||
+ ','
|
chunk[ 'range' ][ 'start' ][ 'column_num' ]
|
||||||
+ str( chunk[ 'range' ][ 'start' ][ 'column_num' ] )
|
|
||||||
) )
|
) )
|
||||||
|
|
||||||
# Remember the line number we're processing. Negative line number means we
|
# Remember the line number we're processing. Negative line number means we
|
||||||
|
Loading…
Reference in New Issue
Block a user