diff options
author | Martino Ferrari <manda.mgf@gmail.com> | 2023-10-23 17:21:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-23 17:21:59 +0200 |
commit | c7c43e0afddf2af1bc40c3abbf8551da73136d2d (patch) | |
tree | 38514029d0a569de2c1372488dae5114333781e6 /manifest.json | |
parent | e0f0abb5d24af77f0afe057cd8e17fb120ca971c (diff) | |
download | lite-xl-plugins-c7c43e0afddf2af1bc40c3abbf8551da73136d2d.tar.gz lite-xl-plugins-c7c43e0afddf2af1bc40c3abbf8551da73136d2d.zip |
Added syntax for FreeFEM++, MARTe2 framework and CUE (#322)
* added support to FreeFEM++ syntax
* added support to MARTe2 Configuration language
* updated with new language support
* Update language_marte.lua
* Update plugins/language_marte.lua
Co-authored-by: Guldoman <giulio.lettieri@gmail.com>
* added languages
* fixed whitespace and new line
* Added CUE syntax
* reformatted
* removed tabs
* fixed issue with char
* formatted and removed duplicated key
* fixed lname and added structure identifier
* removed lite-xl version
* Update plugins/language_cue.lua
Co-authored-by: Guldoman <giulio.lettieri@gmail.com>
---------
Co-authored-by: Martino Ferrari <martinogiordano.ferrari@iter.org>
Co-authored-by: Guldoman <giulio.lettieri@gmail.com>
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json index 8649e96..277665b 100644 --- a/manifest.json +++ b/manifest.json @@ -637,6 +637,14 @@ "tags": ["language"] }, { + "description": "Syntax for the [CUE](http://cuelang.org) definition and validation programming language", + "version": "0.1", + "path": "plugins/language_cue.lua", + "id": "language_cue", + "mod_version": "3", + "tags": ["language"] + }, + { "description": "Syntax for the [D](https://dlang.org/) programming language", "version": "0.2", "path": "plugins/language_d.lua", @@ -661,6 +669,14 @@ "tags": ["language"] }, { + "description": "Syntax for [FreeFEM++](http://freefem.org) programming language", + "version": "0.1", + "path": "plugins/language_edp.lua", + "id": "language_edp", + "mod_version": "3", + "tags": ["language"] + }, + { "description": "Syntax for the [Elixir](https://elixir-lang.org) programming language", "version": "0.2", "path": "plugins/language_elixir.lua", @@ -902,6 +918,14 @@ "tags": ["language"] }, { + "description": "Syntax for [MARTe2](https://vcis.f4e.europa.eu/marte2-docs/master/html/index.html) configuration language", + "version": "0.1", + "path": "plugins/language_marte.lua", + "id": "language_marte", + "mod_version": "3", + "tags": ["language"] + }, + { "description": "Syntax for the [Meson](https://mesonbuild.com) build system language", "version": "0.1", "path": "plugins/language_meson.lua", |