Collection of snippets for yasnippet
Go to file
Jai Flack 49679b6494
org-mode: make a child of latex-mode
2020-09-08 01:45:04 +10:00
report add all the missing modes 2019-03-09 18:35:58 +00:00
snippets org-mode: make a child of latex-mode 2020-09-08 01:45:04 +10:00
.gitattributes Fix incorrect language classification on GitHub 2019-03-17 00:46:41 +11:00
.gitignore ignore compiled snippets 2014-10-03 11:24:04 -04:00
LICENSE gpl v3 2017-08-11 20:29:58 +01:00
README.md Add Debian and derivatives installation instructions 2019-08-01 13:16:59 -04:00
snippets.html add massive generated html 2019-03-09 09:48:18 +00:00
yasnippet-snippets.el Merge pull request #359 from sei40kr/react-redux-snippets 2020-06-06 11:26:58 +01:00

README.md

Yasnippet official snippet collections

MELPA Stable MELPA

Join the chat at https://gitter.im/AndreaCrotti/yasnippet-snippets

This repository contains the official collection of snippets for yasnippet.

You can see here a big HTML page with all the available snippets grouped by mode.

How to install

From melpa

You can install this package from melpa, by first ensuring that you have the melpa source in your package-archives.

(require 'package)
(add-to-list 'package-archives
             '("melpa" . "http://melpa.milkbox.net/packages/") t)
(package-initialize)

Once that is done, then just refresh the packages and install it with.

  • M-x package-refresh-contents
  • M-x package-install yasnippet-snippets

Now all the snippets will load automatically, as soon as yasnippet loads.

On Debian ≥10 and derivatives such as Ubuntu ≥ 18.10

sudo apt install elpa-yasnippet-snippets

Contributing

If you have any useful snippets for any language or framework, then please feel free to contribute, by opening a PR or an issue if you have any suggestions.

To study the current snippets, I suggest that you use M-x yas-describe-tables, which will show a table representation of all the snippets that are available in the current mode.

Guidelines

Snippets need to be generic enough to be useful for everyone, and not contain anything specific to your own system.

Various notes

HTML snippets

Until September 1st 2014 there were a lot of HTML snippets in the repository, which sometimes were useful, but I came to the conclusion that yasnippet was not the right tool for them, so they were removed in this pull request: https://github.com/AndreaCrotti/yasnippet-snippets/pull/49

To everyone writing a lot of HTML I suggest using emmet mode instead, which is a much more powerful mode for writing HTML tags.