Skip to content

Commit

Permalink
Add new debug() function to syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ePirat authored and dcbaker committed Apr 1, 2022
1 parent 6bf957b commit dd6c4e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
## 1.5.2
- Fix highlighting for `structured_sources()`
- Add highlighting for `install_symlink()`
- Add highlighting for `debug()`
- Remove highlighting for obsolete `getext()` and `find_library()`. These have been deprecated for some time and will result in an error if used.
- Add highlighting for `unset_variable()`, `install_emptydir()`, and `range()`
- Functions this PR removes: {'gettext', 'find_library', 'option'}


## 1.5.1
- Add highlighting for the new `structured_sources` function
Expand Down
2 changes: 1 addition & 1 deletion syntaxes/meson.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"name": "keyword.operator.arithmetic.meson"
},
{
"match": "(?x)\\b(add_global_arguments|add_global_link_arguments|add_languages|add_project_arguments|add_project_link_arguments|add_test_setup|alias_target|assert|benchmark|both_libraries|build_target|configuration_data|configure_file|custom_target|declare_dependency|dependency|disabler|environment|error|executable|files|find_program|generator|get_option|get_variable|import|include_directories|install_data|install_emptydir|install_headers|install_man|install_subdir|install_symlink|is_disabler|is_variable|jar|join_paths|library|message|project|range|run_command|run_target|set_variable|shared_library|shared_module|static_library|structured_sources|subdir|subdir_done|subproject|summary|test|unset_variable|vcs_tag|warning\n)\\b\\s*(?=\\()",
"match": "(?x)\\b(add_global_arguments|add_global_link_arguments|add_languages|add_project_arguments|add_project_link_arguments|add_test_setup|alias_target|assert|benchmark|both_libraries|build_target|configuration_data|configure_file|custom_target|debug|declare_dependency|dependency|disabler|environment|error|executable|files|find_program|generator|get_option|get_variable|import|include_directories|install_data|install_emptydir|install_headers|install_man|install_subdir|install_symlink|is_disabler|is_variable|jar|join_paths|library|message|project|range|run_command|run_target|set_variable|shared_library|shared_module|static_library|structured_sources|subdir|subdir_done|subproject|summary|test|unset_variable|vcs_tag|warning\n)\\b\\s*(?=\\()",
"name": "support.function.builtin.meson"
}
],
Expand Down

0 comments on commit dd6c4e0

Please sign in to comment.