New languages: CSS preprocessors
This commit is contained in:
parent
972aee4583
commit
95fa0df9bb
|
@ -631,6 +631,17 @@ PLEASE GIVE UP
|
||||||
createEmpty: true,
|
createEmpty: true,
|
||||||
run: `SHELL=/usr/bin/ksh HOME="$PWD" ksh`,
|
run: `SHELL=/usr/bin/ksh HOME="$PWD" ksh`,
|
||||||
template: `echo "Hello, world!"
|
template: `echo "Hello, world!"
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
less: {
|
||||||
|
aliases: ["lessc"],
|
||||||
|
name: "Less",
|
||||||
|
monacoLang: "less",
|
||||||
|
main: "main.less",
|
||||||
|
run: "lessc main.less",
|
||||||
|
template: `body:before {
|
||||||
|
content: "Hello, world!";
|
||||||
|
}
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
llvm: {
|
llvm: {
|
||||||
|
@ -1034,6 +1045,15 @@ binding_irb.run(IRB.conf)
|
||||||
template: `fn main() {
|
template: `fn main() {
|
||||||
println!("Hello, world!");
|
println!("Hello, world!");
|
||||||
}
|
}
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
sass: {
|
||||||
|
name: "Sass",
|
||||||
|
monacoLang: "plaintext",
|
||||||
|
main: "main.sass",
|
||||||
|
run: "sass main.sass",
|
||||||
|
template: `body:before
|
||||||
|
content: "Hello, world!"
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
scala: {
|
scala: {
|
||||||
|
@ -1055,6 +1075,16 @@ binding_irb.run(IRB.conf)
|
||||||
template: `(begin
|
template: `(begin
|
||||||
(display "Hello, world!")
|
(display "Hello, world!")
|
||||||
(newline))
|
(newline))
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
scss: {
|
||||||
|
name: "SCSS",
|
||||||
|
monacoLang: "scss",
|
||||||
|
main: "main.scss",
|
||||||
|
run: "sass main.scss",
|
||||||
|
template: `body:before {
|
||||||
|
content: "Hello, world!";
|
||||||
|
}
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
sh: {
|
sh: {
|
||||||
|
|
|
@ -52,6 +52,9 @@ pip3 install fortran-language-server
|
||||||
# Julia
|
# Julia
|
||||||
julia -e 'using Pkg; Pkg.add("LanguageServer")'
|
julia -e 'using Pkg; Pkg.add("LanguageServer")'
|
||||||
|
|
||||||
|
# Less
|
||||||
|
npm install -g less
|
||||||
|
|
||||||
# Perl
|
# Perl
|
||||||
cpanm -n Devel::REPL
|
cpanm -n Devel::REPL
|
||||||
|
|
||||||
|
@ -70,6 +73,9 @@ gem install solargraph
|
||||||
# Rust
|
# Rust
|
||||||
rustup component add rls rust-analysis rust-src
|
rustup component add rls rust-analysis rust-src
|
||||||
|
|
||||||
|
# Sass/SCSS
|
||||||
|
npm install -g sass
|
||||||
|
|
||||||
# Shakespeare
|
# Shakespeare
|
||||||
pip3 install shakespearelang
|
pip3 install shakespearelang
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue