Does anyone know how to get smart indentation working with the wxStyledTextCtrl in C++?
I have been trying various variations on the following without apparent success:
_textEd->SetProperty(wxT("indentation.smartindenttype"), wxT("indentation:simple"));
_textEd->SetProperty(wxT("indentation.indentwidth"), wxT("4"));
_textEd->SetProperty(wxT("indentation.tabwidth"), wxT("4"));
_textEd->SetProperty("spell.mistake.indicator", "style:squigglelow");
Note: Indentation and smart indent in ScintillaNET covers this issue for .NET.