nvim-treesitter/tests/query/injections/starlark/test.bzl
Lev Velykoivanenko c53bb10a71
fix(python): regex injection not working for concatenated strings (#8197)
Co-authored-by: Riley Bruins <ribru17@hotmail.com>
2025-10-26 09:25:42 -07:00

5 lines
153 B
Python

# split
# ^ @comment
assert_eq('foo bar'.split(' '), ['foo', 'bar'])
assert_eq("foo %s bar %d" % ("arg1", 2), "foo arg1 bar 2")
# ^ @printf