mirror of https://github.com/lapce/lapce.git
fix rustfmt error and remove bash injection
Signed-off-by: Suraj Ghimire <suraj@ghishadow.com>
This commit is contained in:
parent
de1a928030
commit
cefd13f40e
|
@ -1,2 +0,0 @@
|
|||
((comment) @injection.content
|
||||
(#set! injection.language "comment"))
|
|
@ -540,7 +540,7 @@ pub enum LapceLanguage {
|
|||
id: LapceLanguage::Css,
|
||||
language: tree_sitter_css::language,
|
||||
highlight: include_str!("../queries/css/highlights.scm"),
|
||||
injection: None ,
|
||||
injection: None,
|
||||
comment: "/*",
|
||||
indent: " ",
|
||||
code_lens: (DEFAULT_CODE_LENS_LIST, DEFAULT_CODE_LENS_IGNORE_LIST),
|
||||
|
@ -551,7 +551,7 @@ pub enum LapceLanguage {
|
|||
id: LapceLanguage::Zig,
|
||||
language: tree_sitter_zig::language,
|
||||
highlight: include_str!("../queries/zig/highlights.scm"),
|
||||
injection: Some(tree_sitter_zig::INJECTIONS_QUERY) ,
|
||||
injection: Some(tree_sitter_zig::INJECTIONS_QUERY),
|
||||
comment: "//",
|
||||
indent: " ",
|
||||
code_lens: (DEFAULT_CODE_LENS_LIST, DEFAULT_CODE_LENS_IGNORE_LIST),
|
||||
|
@ -562,7 +562,7 @@ pub enum LapceLanguage {
|
|||
id: LapceLanguage::Bash,
|
||||
language: tree_sitter_bash::language,
|
||||
highlight: include_str!("../queries/bash/highlights.scm"),
|
||||
injection: None ,
|
||||
injection: None,
|
||||
comment: "#",
|
||||
indent: " ",
|
||||
code_lens: (DEFAULT_CODE_LENS_LIST, DEFAULT_CODE_LENS_IGNORE_LIST),
|
||||
|
|
Loading…
Reference in New Issue