diff options
| author | Omar Valdez <omarantoniovaldezf2@gmail.com> | 2024-08-01 01:24:40 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-01 10:24:40 +0200 |
| commit | d13f0183ba93f9b5aba7359146f294abfffff9c3 (patch) | |
| tree | b13b9da8e3140bc804eba8ea2ca8bb2a37330d72 /queries/kotlin | |
| parent | bot(lockfile): update gomod, groovy, powershell, roc (diff) | |
| download | nvim-treesitter-d13f0183ba93f9b5aba7359146f294abfffff9c3.tar nvim-treesitter-d13f0183ba93f9b5aba7359146f294abfffff9c3.tar.gz nvim-treesitter-d13f0183ba93f9b5aba7359146f294abfffff9c3.tar.bz2 nvim-treesitter-d13f0183ba93f9b5aba7359146f294abfffff9c3.tar.lz nvim-treesitter-d13f0183ba93f9b5aba7359146f294abfffff9c3.tar.xz nvim-treesitter-d13f0183ba93f9b5aba7359146f294abfffff9c3.tar.zst nvim-treesitter-d13f0183ba93f9b5aba7359146f294abfffff9c3.zip | |
feat(highlights): capture wildcard imports as `@character.special`
Diffstat (limited to 'queries/kotlin')
| -rw-r--r-- | queries/kotlin/highlights.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/queries/kotlin/highlights.scm b/queries/kotlin/highlights.scm index f30986542..a53fd3a04 100644 --- a/queries/kotlin/highlights.scm +++ b/queries/kotlin/highlights.scm @@ -73,6 +73,8 @@ (import_header "import" @keyword.import) +(wildcard_import) @character.special + ; The last `simple_identifier` in a `import_header` will always either be a function ; or a type. Classes can appear anywhere in the import path, unlike functions (import_header |
