Files
config.phundrak.com/.config/emacs/private/snippets/rust-mode/new
T

10 lines
155 B
Plaintext
Raw Normal View History

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