Issue:libvim currently crashes when smartindent is set and a new line is opened.
Fix: Turn off FEAT_SMARTINDENT - our plan is to offload the indentation logic to the consumer. In Onivim 2's case, we'll use the language configuration info to provide a smartindent-equivalent.
Issue:
libvim
currently crashes whensmartindent
is set and a new line is opened.Fix: Turn off
FEAT_SMARTINDENT
- our plan is to offload the indentation logic to the consumer. In Onivim 2's case, we'll use the language configuration info to provide a smartindent-equivalent.Related: https://github.com/onivim/oni2/issues/1417
Thanks @leavengood for the investigation!