tinymist-query 0.14.16-rc1

Language queries for tinymist.
1
2
3
4
5
6
7
8
9
10
11
12
13
/// path: draw.typ

/// The draw line.
#let line() = 1;
-----
/// path: lib.typ

#import "draw.typ"
-----

#import "lib.typ"
#import lib.draw: *
#(/* position after */ line);