diff options
author | Mateus Felipe C. C. Pinto <mateusfccp@gmail.com> | 2018-12-17 23:53:54 -0200 |
---|---|---|
committer | Mateus Felipe C. C. Pinto <mateusfccp@gmail.com> | 2018-12-18 12:48:36 -0200 |
commit | ca1935d6f776a789dda9e046e5624ba0715e2671 (patch) | |
tree | 4f8ac3e95c088f1ae8e30b11dbd8dddb1cdc0b78 /core/os/input.cpp | |
parent | 0cff752be1f6c6a61ad72bcdf340c06d08277081 (diff) |
Add settings for single-quotes on completion
Diffstat (limited to 'core/os/input.cpp')
-rw-r--r-- | core/os/input.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/core/os/input.cpp b/core/os/input.cpp index 3b895b16b4..6b4c15b85d 100644 --- a/core/os/input.cpp +++ b/core/os/input.cpp @@ -34,6 +34,10 @@ #include "core/os/os.h" #include "core/project_settings.h" +#ifdef TOOLS_ENABLED +#include "editor/editor_settings.h" +#endif + Input *Input::singleton = NULL; Input *Input::get_singleton() { @@ -121,6 +125,8 @@ void Input::_bind_methods() { void Input::get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const { #ifdef TOOLS_ENABLED + const String quote_style = EDITOR_DEF("text_editor/completion/use_single_quotes", 0) ? "'" : "\""; + String pf = p_function; if (p_idx == 0 && (pf == "is_action_pressed" || pf == "action_press" || pf == "action_release" || pf == "is_action_just_pressed" || pf == "is_action_just_released" || pf == "get_action_strength")) { @@ -134,7 +140,7 @@ void Input::get_argument_options(const StringName &p_function, int p_idx, List<S continue; String name = pi.name.substr(pi.name.find("/") + 1, pi.name.length()); - r_options->push_back("\"" + name + "\""); + r_options->push_back(quote_style + name + quote_style); } } #endif |