diff options
| author | Graham Bates <info@grahambates.com> | 2022-04-26 17:53:51 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-04-27 16:54:38 +0200 |
| commit | 7a01241ba6230ef34f62ae8e4ce5033ea78c4e66 (patch) | |
| tree | 0be655838319ee49e4b0149d8ebf16c8f1e7a156 /lua | |
| parent | Update lockfile.json (diff) | |
| download | nvim-treesitter-7a01241ba6230ef34f62ae8e4ce5033ea78c4e66.tar nvim-treesitter-7a01241ba6230ef34f62ae8e4ce5033ea78c4e66.tar.gz nvim-treesitter-7a01241ba6230ef34f62ae8e4ce5033ea78c4e66.tar.bz2 nvim-treesitter-7a01241ba6230ef34f62ae8e4ce5033ea78c4e66.tar.lz nvim-treesitter-7a01241ba6230ef34f62ae8e4ce5033ea78c4e66.tar.xz nvim-treesitter-7a01241ba6230ef34f62ae8e4ce5033ea78c4e66.tar.zst nvim-treesitter-7a01241ba6230ef34f62ae8e4ce5033ea78c4e66.zip | |
feat: add m68k parser and queries
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 0f305be86..8682d48eb 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1041,6 +1041,15 @@ list.wgsl = { filetype = "wgsl", } +list.m68k = { + install_info = { + url = "https://github.com/grahambates/tree-sitter-m68k", + files = { "src/parser.c" }, + }, + maintainers = { "@grahambates" }, + filetype = "asm68k", +} + local M = { list = list, filetype_to_parsername = filetype_to_parsername, |
