src: Rename auto_complete
to autocomplete
Removing the underscore seems to make the option name more in line with the others (even though some do use a separator, e.g. `disabled_hooks`).
This commit is contained in:
parent
c58457a3c0
commit
0b8899d1d4
|
@ -716,7 +716,7 @@ public:
|
|||
: InputMode(input_handler), m_prompt(prompt.str()), m_prompt_face(face),
|
||||
m_empty_text{std::move(emptystr)},
|
||||
m_flags(flags), m_completer(std::move(completer)), m_callback(std::move(callback)),
|
||||
m_auto_complete{context().options()["auto_complete"].get<AutoComplete>() & AutoComplete::Prompt},
|
||||
m_auto_complete{context().options()["autocomplete"].get<AutoComplete>() & AutoComplete::Prompt},
|
||||
m_idle_timer{TimePoint::max(), context().flags() & Context::Flags::Draft ?
|
||||
Timer::Callback{} : [this](Timer&) {
|
||||
if (m_auto_complete and m_refresh_completion_pending)
|
||||
|
@ -1092,7 +1092,7 @@ public:
|
|||
m_restore_cursor(mode == InsertMode::Append),
|
||||
m_edition(context()),
|
||||
m_completer(context()),
|
||||
m_auto_complete{context().options()["auto_complete"].get<AutoComplete>() & AutoComplete::Insert},
|
||||
m_auto_complete{context().options()["autocomplete"].get<AutoComplete>() & AutoComplete::Insert},
|
||||
m_disable_hooks{context().hooks_disabled(), context().hooks_disabled()},
|
||||
m_idle_timer{TimePoint::max(), context().flags() & Context::Flags::Draft ?
|
||||
Timer::Callback{} : [this](Timer&) {
|
||||
|
|
|
@ -350,7 +350,7 @@ void register_options()
|
|||
reg.declare_option("autoinfo",
|
||||
"automatically display contextual help",
|
||||
AutoInfo::Command | AutoInfo::OnKey);
|
||||
reg.declare_option("auto_complete",
|
||||
reg.declare_option("autocomplete",
|
||||
"automatically display possible completions",
|
||||
AutoComplete::Insert | AutoComplete::Prompt);
|
||||
reg.declare_option("aligntab",
|
||||
|
|
Loading…
Reference in New Issue
Block a user