diff --git a/src/main.cc b/src/main.cc index 0a7a9cc6..bcef9c87 100644 --- a/src/main.cc +++ b/src/main.cc @@ -213,7 +213,7 @@ void register_options() Regex{}); reg.declare_option("filetype", "buffer filetype", ""_str); reg.declare_option("path", "path to consider when trying to find a file", - Vector({ "./", "/usr/include" })); + Vector({ "./", "/usr/include" })); reg.declare_option("completers", "insert mode completers to execute.", InsertCompleterDescList({ InsertCompleterDesc{ InsertCompleterDesc::Filename }, diff --git a/src/normal.cc b/src/normal.cc index 567badfb..85f47c5c 100644 --- a/src/normal.cc +++ b/src/normal.cc @@ -211,7 +211,7 @@ void goto_commands(Context& context, NormalParams params) if (contains(filename, c)) return; - auto paths = context.options()["path"].get>(); + auto paths = context.options()["path"].get>(); const String& buffer_name = buffer.name(); auto it = find(reversed(buffer_name), '/'); if (it != buffer_name.rend())