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:
Frank LENORMAND 2018-07-19 11:10:10 +03:00
parent c58457a3c0
commit 0b8899d1d4
3 changed files with 4 additions and 4 deletions

View File

@ -716,7 +716,7 @@ public:
: InputMode(input_handler), m_prompt(prompt.str()), m_prompt_face(face), : InputMode(input_handler), m_prompt(prompt.str()), m_prompt_face(face),
m_empty_text{std::move(emptystr)}, m_empty_text{std::move(emptystr)},
m_flags(flags), m_completer(std::move(completer)), m_callback(std::move(callback)), 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 ? m_idle_timer{TimePoint::max(), context().flags() & Context::Flags::Draft ?
Timer::Callback{} : [this](Timer&) { Timer::Callback{} : [this](Timer&) {
if (m_auto_complete and m_refresh_completion_pending) if (m_auto_complete and m_refresh_completion_pending)
@ -1092,7 +1092,7 @@ public:
m_restore_cursor(mode == InsertMode::Append), m_restore_cursor(mode == InsertMode::Append),
m_edition(context()), m_edition(context()),
m_completer(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_disable_hooks{context().hooks_disabled(), context().hooks_disabled()},
m_idle_timer{TimePoint::max(), context().flags() & Context::Flags::Draft ? m_idle_timer{TimePoint::max(), context().flags() & Context::Flags::Draft ?
Timer::Callback{} : [this](Timer&) { Timer::Callback{} : [this](Timer&) {

View File

@ -350,7 +350,7 @@ void register_options()
reg.declare_option("autoinfo", reg.declare_option("autoinfo",
"automatically display contextual help", "automatically display contextual help",
AutoInfo::Command | AutoInfo::OnKey); AutoInfo::Command | AutoInfo::OnKey);
reg.declare_option("auto_complete", reg.declare_option("autocomplete",
"automatically display possible completions", "automatically display possible completions",
AutoComplete::Insert | AutoComplete::Prompt); AutoComplete::Insert | AutoComplete::Prompt);
reg.declare_option("aligntab", reg.declare_option("aligntab",

View File

@ -9,7 +9,7 @@ main() {
kak_commands=' kak_commands='
set global autoreload yes set global autoreload yes
set global autoinfo "" set global autoinfo ""
set global auto_complete "" set global autocomplete ""
try %{ try %{
exec -save-regs / %{%s%\(\K[^)]+\)<ret>a<backspace><esc>i<backspace><backspace><c-u><esc><a-;>} exec -save-regs / %{%s%\(\K[^)]+\)<ret>a<backspace><esc>i<backspace><backspace><c-u><esc><a-;>}
} catch %{ exec gg } } catch %{ exec gg }