mirror of
https://github.com/kristoferssolo/tree-sitter-bruno.git
synced 2026-03-22 00:36:24 +00:00
chore: remove nvim support
This commit is contained in:
12
grammar.js
12
grammar.js
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @file Bruno grammar for tree-sitter
|
||||
* @file Bruno grammar for tree-sitter
|
||||
* @author Kristofers Solo <dev@kristofers.xyz>
|
||||
* @license MIT
|
||||
*/
|
||||
@@ -8,13 +8,9 @@
|
||||
// @ts-check
|
||||
|
||||
module.exports = grammar({
|
||||
name: "bruno",
|
||||
name: "bruno",
|
||||
|
||||
extras: (_) => [/\s+|(\r?\n)/],
|
||||
|
||||
externals: ($) => [$.rawtext],
|
||||
|
||||
rules: {
|
||||
rules: {
|
||||
source_file: ($) =>
|
||||
repeat(
|
||||
field(
|
||||
@@ -129,5 +125,5 @@ module.exports = grammar({
|
||||
|
||||
key: (_) => /[^\s\r\n:]+/,
|
||||
value: (_) => /[^\r\n]*/,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user