aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuldoman <giulio.lettieri@gmail.com>2023-08-22 23:19:32 +0200
committerGitHub <noreply@github.com>2023-08-22 17:19:32 -0400
commit896e40588411d758b8060ce2fae28ce1649c88d4 (patch)
tree6bd565bfd9d3ac9b06056805d1bf92dd5b2a5a2e
parent5d016b42d45e89f9839885192478faa283ec9388 (diff)
downloadlite-xl-plugins-896e40588411d758b8060ce2fae28ce1649c88d4.tar.gz
lite-xl-plugins-896e40588411d758b8060ce2fae28ce1649c88d4.zip
Add `block_comment` to `language_rust` (#281)
-rw-r--r--manifest.json2
-rw-r--r--plugins/language_rust.lua1
2 files changed, 2 insertions, 1 deletions
diff --git a/manifest.json b/manifest.json
index c520820..319cbb3 100644
--- a/manifest.json
+++ b/manifest.json
@@ -827,7 +827,7 @@
},
{
"description": "Syntax for the [Rust](https://rust-lang.org/) programming language",
- "version": "0.2",
+ "version": "0.3",
"path": "plugins/language_rust.lua",
"id": "language_rust",
"mod_version": "3"
diff --git a/plugins/language_rust.lua b/plugins/language_rust.lua
index 44bc342..09e75ba 100644
--- a/plugins/language_rust.lua
+++ b/plugins/language_rust.lua
@@ -5,6 +5,7 @@ syntax.add {
name = "Rust",
files = { "%.rs$" },
comment = "//",
+ block_comment = { "/*", "*/" },
patterns = {
{ pattern = "//.-\n", type = "comment" },
{ pattern = { "/%*", "%*/" }, type = "comment" },