mirror of
https://github.com/godotengine/godot.git
synced 2025-10-21 08:53:35 +00:00
Highlight control flow keywords with a different color
This makes them easier to distinguish from other keywords.
This commit is contained in:
parent
758bccf364
commit
e905e8f145
20 changed files with 115 additions and 9 deletions
|
@ -77,6 +77,10 @@ void PluginScriptLanguage::get_reserved_words(List<String> *p_words) const {
|
|||
}
|
||||
}
|
||||
|
||||
bool PluginScriptLanguage::is_control_flow_keyword(String p_keyword) const {
|
||||
return false;
|
||||
}
|
||||
|
||||
void PluginScriptLanguage::get_comment_delimiters(List<String> *p_delimiters) const {
|
||||
if (_desc.comment_delimiters) {
|
||||
const char **w = _desc.comment_delimiters;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue