Add Buffer::enclosing_bracket_ranges

Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Co-Authored-By: Max Brunsfeld <max@zed.dev>
This commit is contained in:
Antonio Scandurra
2021-05-28 19:35:04 +02:00
co-authored by Nathan Sobo Max Brunsfeld
parent 0b51e99c6e
commit bf8eee26f8
3 changed files with 116 additions and 7 deletions
+6
View File
@@ -1,2 +1,8 @@
name = "Rust"
path_suffixes = ["rs"]
bracket_pairs = [
{ start = "{", end = "}" },
{ start = "[", end = "]" },
{ start = "(", end = ")" },
{ start = "<", end = ">" },
]