diff options
Diffstat (limited to 'runtime/doc/news.txt')
-rw-r--r-- | runtime/doc/news.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt index c343525a09..f33cffa22e 100644 --- a/runtime/doc/news.txt +++ b/runtime/doc/news.txt @@ -37,14 +37,18 @@ The following new APIs or features were added. • |vim.iter()| provides a generic iterator interface for tables and Lua iterators |luaref-in|. + • Added |vim.keycode()| for translating keycodes in a string. • Added automatic linting of treesitter query files (see |ft-query-plugin|). Automatic linting can be turned off via >lua - vim.g.query_lint_on = {} + vim.g.query_lint_on = {} < • Enabled treesitter highlighting for treesitter query files by default. +• Added |vim.treesitter.query.omnifunc()| for treesitter query files (set by + default). + ============================================================================== CHANGED FEATURES *news-changed* |