-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
syntax-highlighting: vim: update builtin function list
Update builtin function list using the refman python docs/genrefman.py \ -g vim \ -o data/syntax-highlighting/vim/syntax/ This also drops gettext() and find_library() from the list of builtin functions that have been deprecated since 2016. Changes are squashed here because test_vim_syntax_highlighting() would validate the file against the list of builtin functions that no longer matches the yaml documentation. Signed-off-by: Liam Beguin <[email protected]>
- Loading branch information
1 parent
ba1ba1f
commit 983562c
Showing
3 changed files
with
9 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
" License: VIM License | ||
" Maintainer: Nirbheek Chauhan <[email protected]> | ||
" Liam Beguin <[email protected]> | ||
" Last Change: 2021 Aug 16 | ||
" Last Change: 2023 Aug 27 | ||
" Credits: Zvezdan Petkovic <[email protected]> | ||
" Neil Schemenauer <[email protected]> | ||
" Dmitry Vasiliev | ||
|
@@ -64,6 +64,11 @@ syn keyword mesonBoolean false true | |
|
||
" Built-in functions | ||
syn keyword mesonBuiltin | ||
\ build_machine | ||
\ host_machine | ||
\ meson | ||
\ option | ||
\ target_machine | ||
\ add_global_arguments | ||
\ add_global_link_arguments | ||
\ add_languages | ||
|
@@ -75,42 +80,38 @@ syn keyword mesonBuiltin | |
\ assert | ||
\ benchmark | ||
\ both_libraries | ||
\ build_machine | ||
\ build_target | ||
\ configuration_data | ||
\ configure_file | ||
\ custom_target | ||
\ debug | ||
\ declare_dependency | ||
\ dependency | ||
\ disabler | ||
\ environment | ||
\ error | ||
\ executable | ||
\ files | ||
\ find_library | ||
\ find_program | ||
\ generator | ||
\ get_option | ||
\ get_variable | ||
\ gettext | ||
\ host_machine | ||
\ import | ||
\ include_directories | ||
\ install_data | ||
\ install_emptydir | ||
\ install_headers | ||
\ install_man | ||
\ install_subdir | ||
\ install_symlink | ||
\ install_emptydir | ||
\ is_disabler | ||
\ is_variable | ||
\ jar | ||
\ join_paths | ||
\ library | ||
\ meson | ||
\ message | ||
\ option | ||
\ project | ||
\ range | ||
\ run_command | ||
\ run_target | ||
\ set_variable | ||
|
@@ -122,13 +123,10 @@ syn keyword mesonBuiltin | |
\ subdir_done | ||
\ subproject | ||
\ summary | ||
\ target_machine | ||
\ test | ||
\ unset_variable | ||
\ vcs_tag | ||
\ warning | ||
\ range | ||
\ debug | ||
|
||
if exists("meson_space_error_highlight") | ||
" trailing whitespace | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters