YASnippet is an open source text markup language created in 2008 by Zhang Chiyuan.
#287on PLDB | 16Years Old | 403Repos |
git clone https://github.com/joaotavora/yasnippet
A template system for Emacs
# -*- mode: snippet -*-
# name: fun
# key: fun
# expand-env: ((yas-indent-line 'fixed))
# --
${1:function-name} :: ${2:type}
$1 ${3:arguments} $0
# name: Read stdin
# key: stdin
# group: es6
# --
new Promise(resolve => {
let input = "";
process.stdin.setEncoding("UTF8");
process.stdin.on("readable", () => {
const chunk = process.stdin.read();
null !== chunk ? input += chunk : resolve(input);
})
}).then(data => {
$1
});
Feature | Supported | Example | Token |
---|---|---|---|
Comments | ✓ | # A comment | |
Line Comments | ✓ | # A comment | # |
Semantic Indentation | X |