Measures Concepts
GitHub icon

YASnippet

YASnippet - Text markup language

< >

YASnippet is an open source text markup language created in 2008 by Zhang Chiyuan.

Source code:
git clone https://github.com/joaotavora/yasnippet
#351on PLDB 16Years Old 403Repos

A template system for Emacs


Example from the web:
# -*- mode: snippet -*- # name: fun # key: fun # expand-env: ((yas-indent-line 'fixed)) # -- ${1:function-name} :: ${2:type} $1 ${3:arguments} $0
Example from Linguist:
# 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 });

Language features

Feature Supported Token Example
Comments ✓
# A comment
Line Comments ✓ #
# A comment
Semantic Indentation X

View source

- Build the next great programming language · Search · Add Language · Features · Creators · Resources · About · Blog · Acknowledgements · Queries · Stats · Sponsor · Day 605 · feedback@pldb.io · Logout