[Emacs] Yasnippet snippets are now tangled from spacemacs.org

Since all my snippets are now contained in my spacemacs.org file, this
commit removes all my snippets files from this repository.
This commit is contained in:
2020-09-02 13:26:50 +02:00
parent ff274510e5
commit 84aba5216f
14 changed files with 190 additions and 93 deletions

View File

@@ -1,5 +0,0 @@
# -*- mode: snippet -*-
# name: ATTR HTML
# key: <ah
# --
#+ATTR_HTML: $0

View File

@@ -1,5 +0,0 @@
# -*- mode: snippet -*-
# name: ATTR LATEX
# key: <al
# --
#+ATTR_LATEX: $0

View File

@@ -1,5 +0,0 @@
# -*- mode: snippet -*-
# name: caption
# key: <ca
# --
#+CAPTION: $0

View File

@@ -1,7 +0,0 @@
# -*- mode: snippet -*-
# name: comment block
# key: <co
# --
#+BEGIN_COMMENT
$0
#+END_COMMENT

View File

@@ -1,7 +0,0 @@
# -*- mode: snippet -*-
# name: emacs-lisp block
# key: <el
# --
#+BEGIN_SRC emacs-lisp
$0
#+END_SRC

View File

@@ -1,11 +0,0 @@
# -*- mode: snippet -*-
# name: header
# key: header
# --
#+TITLE: ${1:`(replace-regexp-in-string "-" " " (capitalize (file-name-nondirectory (file-name-sans-extension (buffer-file-name)))))`}
#+AUTHOR: `(user-full-name)`
#+EMAIL: `user-mail-address`
#+DATE: `(format-time-string "%Y-%m-%d")`
#+TAGS: $2
$0

View File

@@ -1,5 +0,0 @@
# -*- mode: snippet -*-
# name: name
# key: <na
# --
#+NAME: $0

View File

@@ -1,6 +0,0 @@
# -*- mode: snippet -*-
# name: nyqy
# key: <ny
# --
\{\{\{nyqy($1)\}\}\}$0

View File

@@ -1,5 +0,0 @@
# -*- mode: snippet -*-
# name: phon
# key: <ph
# --
\{\{\{phon($1)\}\}\}$0

View File

@@ -1,8 +0,0 @@
# -*- mode: snippet -*-
# name: python block
# key: <py
# --
#+NAME: $1
#+BEGIN_SRC python
$0
#+END_SRC

View File

@@ -1,7 +0,0 @@
# -*- mode: snippet -*-
# name: source block
# key: <s
# --
#+BEGIN_SRC $0
#+END_SRC

View File

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

View File

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