diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2021-04-17 20:36:03 +0200 |
|---|---|---|
| committer | Thomas Vigouroux <tomvig38@gmail.com> | 2021-04-23 16:03:18 +0200 |
| commit | 3b8d23ca301cba91b444e44752537199e72fa08a (patch) | |
| tree | 15059e4ea6cf27f77bdf850e238a60313ada1f8a /lua | |
| parent | 9e46322532b8a74c89b6d2486a9ec87e0ffa30cb (diff) | |
parsers: Add Fortran parser
Fixes: https://github.com/nvim-treesitter/nvim-treesitter/issues/1194
Refs:
- https://nvim-treesitter.zulipchat.com/#narrow/stream/252271-general/topic/Meeting.20everyone/near/219174700
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 4e9d08a3..833e5a91 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -541,6 +541,14 @@ list.zig = { maintainers = { "@Himujjal" } } +list.fortran = { + install_info = { + url = "https://github.com/stadelmanma/tree-sitter-fortran", + files = { "src/parser.c", "src/scanner.cc", }, + requires_generate_from_grammar = true, + }, +} + local M = { list = list } |
