js highlighting
This commit is contained in:
parent
b84cde8e2b
commit
f95d44ec69
|
@ -399,6 +399,7 @@ fn to_syntax(language: &str) -> Syntax {
|
||||||
match language {
|
match language {
|
||||||
"py" => Syntax::python(),
|
"py" => Syntax::python(),
|
||||||
"rs" => Syntax::rust(),
|
"rs" => Syntax::rust(),
|
||||||
|
"js" => Syntax::javascript(),
|
||||||
_ => Syntax::shell(),
|
_ => Syntax::shell(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
use super::Syntax;
|
||||||
|
use std::collections::BTreeSet;
|
||||||
|
|
||||||
|
impl Syntax {
|
||||||
|
pub fn javascript() -> Syntax {
|
||||||
|
Syntax {
|
||||||
|
language: "Javascript",
|
||||||
|
case_sensitive: true,
|
||||||
|
comment: "//",
|
||||||
|
comment_multiline: ["/*", "*/"],
|
||||||
|
keywords: BTreeSet::from([
|
||||||
|
"&&", "||", "!", "let", "var", "abstract", "arguments", "await", "break", "case", "catch", "class", "const", "continue",
|
||||||
|
"debugger", "default", "delete", "do", "else", "enum", "eval", "export", "extends", "final", "finally", "for", "function",
|
||||||
|
"goto", "if", "implements", "import", "in", "instanceof", "interface", "let", "native", "new", "package", "private", "protected",
|
||||||
|
"public", "return", "static", "super", "switch", "synchronized", "this","throw", "throws", "transient", "try", "typeof",
|
||||||
|
"var", "volatile", "while", "with", "yield",
|
||||||
|
]),
|
||||||
|
types: BTreeSet::from([
|
||||||
|
"Boolean", "Number", "BigInt", "Undefined", "Null", "String", "Symbol", "byte", "char", "float", "int", "long", "short", "void",
|
||||||
|
]),
|
||||||
|
special: BTreeSet::from(["false", "null", "true"]),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,5 +1,6 @@
|
||||||
#![allow(dead_code)]
|
#![allow(dead_code)]
|
||||||
pub mod asm;
|
pub mod asm;
|
||||||
|
pub mod javascript;
|
||||||
pub mod lua;
|
pub mod lua;
|
||||||
pub mod python;
|
pub mod python;
|
||||||
pub mod rust;
|
pub mod rust;
|
||||||
|
|
|
@ -27,6 +27,8 @@ impl ShortcutsWindow {
|
||||||
ui.separator();
|
ui.separator();
|
||||||
ui.label("Ctrl+F : open search window");
|
ui.label("Ctrl+F : open search window");
|
||||||
ui.separator();
|
ui.separator();
|
||||||
|
ui.label("Ctrl+T : reload tree");
|
||||||
|
ui.separator();
|
||||||
ui.label("Ctrl+Z : undo");
|
ui.label("Ctrl+Z : undo");
|
||||||
ui.label("Ctrl+Y : redo");
|
ui.label("Ctrl+Y : redo");
|
||||||
ui.label("Tab on selection : add indent of selection");
|
ui.label("Tab on selection : add indent of selection");
|
||||||
|
|
Loading…
Reference in a new issue