[Emacs] Add new Rust snippets, common-lisp layer

This commit adds two new snippets for Rust, one for an easier way to
write a `println' macro than the default one, and another one for
writing more easily new `new' functions for Rust structs.

It also adds the `common-lisp' layer in Emacs so I can test StumpWM.
This commit is contained in:
2020-08-24 14:41:09 +02:00
parent 7345a3deae
commit 2a19478995
3 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
# -*- mode: snippet -*-
# name: new
# key: _new
# --
fn new(${1:args}) -> Self {
$0
Self {
${1:$(phundrak/yas-rust-new-assignments yas-text)}
}
}

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: println!("{}", value);
# key: pln
# --
println!("${1:{}}", $2);