Merge pull request #308 from kevinhwang91/master

fix: &sw may be a zero
This commit is contained in:
Israel Chauca Fuentes
2024-08-06 01:02:38 -05:00
committed by GitHub

View File

@@ -483,8 +483,9 @@ function! delimitMate#ExpandReturn() "{{{
" indentation is controlled by 'smartindent', and the first character on " indentation is controlled by 'smartindent', and the first character on
" the new line is '}'. If this were typed manually it would reindent to " the new line is '}'. If this were typed manually it would reindent to
" match the current line. Let's reproduce that behavior. " match the current line. Let's reproduce that behavior.
let shifts = indent('.') / &sw let sw = &sw == 0 ? &ts : &sw
let spaces = indent('.') - (shifts * &sw) let shifts = indent('.') / sw
let spaces = indent('.') - (shifts * sw)
let val .= "^\<C-D>".repeat("\<C-T>", shifts).repeat(' ', spaces) let val .= "^\<C-D>".repeat("\<C-T>", shifts).repeat(' ', spaces)
endif endif
" Expand: " Expand: