From d3932c02424eec0520faa2afa42371c27122f5a7 Mon Sep 17 00:00:00 2001 From: Christian Keil Date: Wed, 9 Sep 2020 17:44:09 +0200 Subject: [PATCH] Fix format linting error. --- autoload/ale/code_action.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autoload/ale/code_action.vim b/autoload/ale/code_action.vim index 849942ca..1959d1b1 100644 --- a/autoload/ale/code_action.vim +++ b/autoload/ale/code_action.vim @@ -127,6 +127,7 @@ function! ale#code_action#ApplyChanges(filename, changes, should_save) abort endif call extend(l:middle, l:insertions[1:]) + if l:end_line <= len(l:lines) " Only extend the last line if end_line is within the range of " lines. @@ -140,6 +141,7 @@ function! ale#code_action#ApplyChanges(filename, changes, should_save) abort else let l:end = [] endif + let l:lines = l:start + l:middle + l:end let l:current_line_offset = len(l:lines) - l:lines_before_change