mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-12-11 16:04:17 +00:00
Last commit before tagging and releasing
This commit is contained in:
6
extras/imported/lisp-mode/'(.yasnippet
Normal file
6
extras/imported/lisp-mode/'(.yasnippet
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# key: (
|
||||
# contributor: Translated from TextMate Snippet
|
||||
# name: '(
|
||||
# --
|
||||
'(
|
||||
0
extras/imported/lisp-mode/.yas-make-groups
Normal file
0
extras/imported/lisp-mode/.yas-make-groups
Normal file
6
extras/imported/lisp-mode/`(.yasnippet
Normal file
6
extras/imported/lisp-mode/`(.yasnippet
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# key: (
|
||||
# contributor: Translated from TextMate Snippet
|
||||
# name: `(
|
||||
# --
|
||||
\`(
|
||||
7
extras/imported/lisp-mode/defconstant.yasnippet
Normal file
7
extras/imported/lisp-mode/defconstant.yasnippet
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# key: const
|
||||
# contributor: Translated from TextMate Snippet
|
||||
# name: defconstant
|
||||
# --
|
||||
(defconstant +${1:name}+ ${2:value}
|
||||
"${3:Documentation for $1.}"))
|
||||
8
extras/imported/lisp-mode/defmacro.yasnippet
Normal file
8
extras/imported/lisp-mode/defmacro.yasnippet
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# key: mac
|
||||
# contributor: Translated from TextMate Snippet
|
||||
# name: defmacro
|
||||
# --
|
||||
(defmacro ${1:name} (${2:parameters})
|
||||
"${3:Documentation for $1.}"
|
||||
($0))
|
||||
7
extras/imported/lisp-mode/defparameter.yasnippet
Normal file
7
extras/imported/lisp-mode/defparameter.yasnippet
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# key: par
|
||||
# contributor: Translated from TextMate Snippet
|
||||
# name: defparameter
|
||||
# --
|
||||
(defparameter *${1:name}* ${2:value}
|
||||
"${3:Documentation for $1.}")
|
||||
8
extras/imported/lisp-mode/defun.yasnippet
Normal file
8
extras/imported/lisp-mode/defun.yasnippet
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# key: fun
|
||||
# contributor: Translated from TextMate Snippet
|
||||
# name: defun
|
||||
# --
|
||||
(defun ${1:name} (${2:parameters})
|
||||
"${3:Documentation for $1.}"
|
||||
($0))
|
||||
7
extras/imported/lisp-mode/defvar.yasnippet
Normal file
7
extras/imported/lisp-mode/defvar.yasnippet
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# key: var
|
||||
# contributor: Translated from TextMate Snippet
|
||||
# name: defvar
|
||||
# --
|
||||
(defvar *${1:name}* ${2:value}
|
||||
"${3:Documentation for $1.}")
|
||||
7
extras/imported/lisp-mode/if.yasnippet
Normal file
7
extras/imported/lisp-mode/if.yasnippet
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# key: if
|
||||
# contributor: Translated from TextMate Snippet
|
||||
# name: if
|
||||
# --
|
||||
(if (${1:test})
|
||||
($0))
|
||||
7
extras/imported/lisp-mode/let.yasnippet
Normal file
7
extras/imported/lisp-mode/let.yasnippet
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# key: let
|
||||
# contributor: Translated from TextMate Snippet
|
||||
# name: let
|
||||
# --
|
||||
(let (${1:variables})
|
||||
($0))
|
||||
7
extras/imported/lisp-mode/let1.yasnippet
Normal file
7
extras/imported/lisp-mode/let1.yasnippet
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# key: let1
|
||||
# contributor: Translated from TextMate Snippet
|
||||
# name: let1
|
||||
# --
|
||||
(let ((${1:variable} ${2:value}))
|
||||
($0))
|
||||
6
extras/imported/lisp-mode/setf.yasnippet
Normal file
6
extras/imported/lisp-mode/setf.yasnippet
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# key: setf
|
||||
# contributor: Translated from TextMate Snippet
|
||||
# name: setf
|
||||
# --
|
||||
(setf ${1:place} ${2:value})
|
||||
Reference in New Issue
Block a user