diff options
| author | NCarrezDev <n.carrez.dev@gmail.com> | 2022-07-13 09:16:32 +0200 |
|---|---|---|
| committer | NCarrezDev <n.carrez.dev@gmail.com> | 2022-07-13 09:16:32 +0200 |
| commit | 7f9287a7e72c5da83d036f1aeff7c42ec9d901e7 (patch) | |
| tree | d74fdb7b4e7f2e6d68bcd24f896867088c92b753 /data/plugins/language_cpp.lua | |
| parent | 030dcc1e62ff235271ee2dd84f07313a2bbf9574 (diff) | |
| download | lite-xl-7f9287a7e72c5da83d036f1aeff7c42ec9d901e7.tar.gz lite-xl-7f9287a7e72c5da83d036f1aeff7c42ec9d901e7.zip | |
[chore]: Delete useless $
follow up on Guldoman's comment
Diffstat (limited to 'data/plugins/language_cpp.lua')
| -rw-r--r-- | data/plugins/language_cpp.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/plugins/language_cpp.lua b/data/plugins/language_cpp.lua index c007a64d..a26ce868 100644 --- a/data/plugins/language_cpp.lua +++ b/data/plugins/language_cpp.lua @@ -10,7 +10,7 @@ syntax.add { comment = "//", block_comment = { "/*", "*/" }, patterns = { - { pattern = "//.*$", type = "comment" }, + { pattern = "//.*", type = "comment" }, { pattern = { "/%*", "%*/" }, type = "comment" }, { pattern = { '"', '"', '\\' }, type = "string" }, { pattern = { "'", "'", '\\' }, type = "string" }, |
