mirror of
https://github.com/neovim/neovim.git
synced 2026-07-17 06:31:16 +00:00
vim-patch:8.0.0851: 'smartindent' is used even when 'indentexpr' is set (#8481)
Problem: 'smartindent' is used even when 'indentexpr' is set. Solution: Ignore 'smartindent' when 'indentexpr' is set. (Hirohito Higashi)69a76feda9--- This also fixes "delfunction!" which was not merged fully ina185ab70fd(vim-patch:8.0.0655)
This commit is contained in:
committed by
Justin M. Keyes
parent
cf92a76285
commit
b2633bba73
@@ -698,7 +698,7 @@ return {
|
||||
},
|
||||
{
|
||||
command='delfunction',
|
||||
flags=bit.bor(NEEDARG, WORD1, CMDWIN),
|
||||
flags=bit.bor(BANG, NEEDARG, WORD1, CMDWIN),
|
||||
addr_type=ADDR_LINES,
|
||||
func='ex_delfunction',
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user