diff --git a/snippets/c-mode/fopen b/snippets/c-mode/fopen index 044c743..5b49529 100644 --- a/snippets/c-mode/fopen +++ b/snippets/c-mode/fopen @@ -1,3 +1,3 @@ #name : FILE *fp = fopen(..., ...); # -- -FILE *${fp} = fopen(${"file"}, "${r}"); +FILE *${fp} = fopen(${"file"}, "${r}"); \ No newline at end of file diff --git a/snippets/cc-mode/inc b/snippets/cc-mode/inc index ae33328..c18a4d2 100644 --- a/snippets/cc-mode/inc +++ b/snippets/cc-mode/inc @@ -1,3 +1,3 @@ #name : #include "..." # -- -#include "$1" +#include "$1" \ No newline at end of file diff --git a/snippets/cc-mode/inc.1 b/snippets/cc-mode/inc.1 index 66326cd..f85c08a 100644 --- a/snippets/cc-mode/inc.1 +++ b/snippets/cc-mode/inc.1 @@ -1,3 +1,3 @@ #name : #include <...> # -- -#include <$1> +#include <$1> \ No newline at end of file diff --git a/snippets/cc-mode/main b/snippets/cc-mode/main index 9249049..292a99c 100644 --- a/snippets/cc-mode/main +++ b/snippets/cc-mode/main @@ -4,4 +4,4 @@ int main(int argc, char *argv[]) { $0 return 0; -} +} \ No newline at end of file diff --git a/snippets/csharp-mode/attrib b/snippets/csharp-mode/attrib index 9e14e22..4ff58d3 100644 --- a/snippets/csharp-mode/attrib +++ b/snippets/csharp-mode/attrib @@ -4,4 +4,4 @@ /// /// $3 /// -private $1 $2; +private $1 $2; \ No newline at end of file diff --git a/snippets/csharp-mode/attrib.1 b/snippets/csharp-mode/attrib.1 index 099cc7b..8153be9 100644 --- a/snippets/csharp-mode/attrib.1 +++ b/snippets/csharp-mode/attrib.1 @@ -18,4 +18,4 @@ public $1 $2 set { this.$2 = value; } -} +} \ No newline at end of file diff --git a/snippets/csharp-mode/attrib.2 b/snippets/csharp-mode/attrib.2 index 566eacf..08d58c8 100644 --- a/snippets/csharp-mode/attrib.2 +++ b/snippets/csharp-mode/attrib.2 @@ -18,4 +18,4 @@ public ${1:Type} ${2:Name} set { this.${2:$(if (> (length text) 0) (format "_%s%s" (downcase (substring text 0 1)) (substring text 1 (length text))) "")} = value; } -} +} \ No newline at end of file diff --git a/snippets/csharp-mode/class b/snippets/csharp-mode/class index 1cce2e8..acef6d1 100644 --- a/snippets/csharp-mode/class +++ b/snippets/csharp-mode/class @@ -18,4 +18,4 @@ ${5:public} class ${1:Name} { } #endregion -} +} \ No newline at end of file diff --git a/snippets/csharp-mode/comment b/snippets/csharp-mode/comment index 3bd20d3..c2a4b70 100644 --- a/snippets/csharp-mode/comment +++ b/snippets/csharp-mode/comment @@ -3,4 +3,4 @@ # -- /// /// $1 -/// +/// \ No newline at end of file diff --git a/snippets/csharp-mode/comment.1 b/snippets/csharp-mode/comment.1 index 3c14ad9..08c802b 100644 --- a/snippets/csharp-mode/comment.1 +++ b/snippets/csharp-mode/comment.1 @@ -1,4 +1,4 @@ #contributor : Alejandro Espinoza Esparza #name : /// ... # -- -/// $2 +/// $2 \ No newline at end of file diff --git a/snippets/csharp-mode/comment.2 b/snippets/csharp-mode/comment.2 index 63a6a20..cb3aa80 100644 --- a/snippets/csharp-mode/comment.2 +++ b/snippets/csharp-mode/comment.2 @@ -1,4 +1,4 @@ #contributor : Alejandro Espinoza Esparza #name : /// ... # -- -/// $1 +/// $1 \ No newline at end of file diff --git a/snippets/csharp-mode/comment.3 b/snippets/csharp-mode/comment.3 index 394c323..ec57a75 100644 --- a/snippets/csharp-mode/comment.3 +++ b/snippets/csharp-mode/comment.3 @@ -1,4 +1,4 @@ #contributor : Alejandro Espinoza Esparza #name : /// ... # -- -/// $2 +/// $2 \ No newline at end of file diff --git a/snippets/csharp-mode/method b/snippets/csharp-mode/method index e9a5906..b63b3c2 100644 --- a/snippets/csharp-mode/method +++ b/snippets/csharp-mode/method @@ -7,4 +7,4 @@ ${1:public} ${2:void} ${3:MethodName}($4) { $0 -} +} \ No newline at end of file diff --git a/snippets/csharp-mode/namespace b/snippets/csharp-mode/namespace index af7c928..bc4dec9 100644 --- a/snippets/csharp-mode/namespace +++ b/snippets/csharp-mode/namespace @@ -4,4 +4,4 @@ namespace $1 { $0 -} +} \ No newline at end of file diff --git a/snippets/csharp-mode/prop b/snippets/csharp-mode/prop index df9df91..7260fac 100644 --- a/snippets/csharp-mode/prop +++ b/snippets/csharp-mode/prop @@ -13,4 +13,4 @@ $1 $2 $3 set { this.$4 = value; } -} +} \ No newline at end of file diff --git a/snippets/csharp-mode/region b/snippets/csharp-mode/region index 83f9a24..bcc3cec 100644 --- a/snippets/csharp-mode/region +++ b/snippets/csharp-mode/region @@ -3,4 +3,4 @@ # -- #region $1 $0 -#endregion +#endregion \ No newline at end of file diff --git a/snippets/csharp-mode/using b/snippets/csharp-mode/using index 704637e..f10d1ba 100644 --- a/snippets/csharp-mode/using +++ b/snippets/csharp-mode/using @@ -1,4 +1,4 @@ #contributor : Alejandro Espinoza Esparza #name : using ...; # -- -using $1; +using $1; \ No newline at end of file diff --git a/snippets/csharp-mode/using.1 b/snippets/csharp-mode/using.1 index e9f0bb0..bf87f85 100644 --- a/snippets/csharp-mode/using.1 +++ b/snippets/csharp-mode/using.1 @@ -1,4 +1,4 @@ #contributor : Alejandro Espinoza Esparza #name : using System; # -- -using System; +using System; \ No newline at end of file diff --git a/snippets/csharp-mode/using.2 b/snippets/csharp-mode/using.2 index 0a3c07d..d0d39bf 100644 --- a/snippets/csharp-mode/using.2 +++ b/snippets/csharp-mode/using.2 @@ -1,4 +1,4 @@ #contributor : Alejandro Espinoza Esparza #name : using System....; # -- -using System.$1; +using System.$1; \ No newline at end of file diff --git a/snippets/css-mode/cl b/snippets/css-mode/cl index 4fc7a8d..8d03a13 100644 --- a/snippets/css-mode/cl +++ b/snippets/css-mode/cl @@ -1,4 +1,4 @@ #contributor : rejeep #name : clear: ... # -- -clear: $1; +clear: $1; \ No newline at end of file diff --git a/snippets/css-mode/disp.block b/snippets/css-mode/disp.block index f74ea3c..5e45393 100644 --- a/snippets/css-mode/disp.block +++ b/snippets/css-mode/disp.block @@ -1,4 +1,4 @@ #contributor : rejeep #name : display: block # -- -display: block; +display: block; \ No newline at end of file diff --git a/snippets/css-mode/disp.inline b/snippets/css-mode/disp.inline index 30275a8..9cc60c9 100644 --- a/snippets/css-mode/disp.inline +++ b/snippets/css-mode/disp.inline @@ -1,4 +1,4 @@ #contributor : rejeep #name : display: inline # -- -display: inline; +display: inline; \ No newline at end of file diff --git a/snippets/css-mode/disp.none b/snippets/css-mode/disp.none index 80632a5..c9ac636 100644 --- a/snippets/css-mode/disp.none +++ b/snippets/css-mode/disp.none @@ -1,4 +1,4 @@ #contributor : rejeep #name : display: none # -- -display: none; +display: none; \ No newline at end of file diff --git a/snippets/css-mode/ff b/snippets/css-mode/ff index a7352cf..17d0b94 100644 --- a/snippets/css-mode/ff +++ b/snippets/css-mode/ff @@ -1,4 +1,4 @@ #contributor : rejeep #name : font-family: ... # -- -font-family: $1; +font-family: $1; \ No newline at end of file diff --git a/snippets/css-mode/fs b/snippets/css-mode/fs index c28cdbb..90ff403 100644 --- a/snippets/css-mode/fs +++ b/snippets/css-mode/fs @@ -1,4 +1,4 @@ #contributor : rejeep #name : font-size: ... # -- -font-size: ${12px}; +font-size: ${12px}; \ No newline at end of file diff --git a/snippets/css-mode/mar.bottom b/snippets/css-mode/mar.bottom index 9672f60..a5b6afd 100644 --- a/snippets/css-mode/mar.bottom +++ b/snippets/css-mode/mar.bottom @@ -1,4 +1,4 @@ #contributor : rejeep #name : margin-bottom: ... # -- -margin-bottom: $1; +margin-bottom: $1; \ No newline at end of file diff --git a/snippets/css-mode/mar.left b/snippets/css-mode/mar.left index 414353e..7285297 100644 --- a/snippets/css-mode/mar.left +++ b/snippets/css-mode/mar.left @@ -1,4 +1,4 @@ #contributor : rejeep #name : margin-left: ... # -- -margin-left: $1; +margin-left: $1; \ No newline at end of file diff --git a/snippets/css-mode/mar.mar b/snippets/css-mode/mar.mar index 13354db..c649ca4 100644 --- a/snippets/css-mode/mar.mar +++ b/snippets/css-mode/mar.mar @@ -1,4 +1,4 @@ #contributor : rejeep #name : margin: ... # -- -margin: $1; +margin: $1; \ No newline at end of file diff --git a/snippets/css-mode/mar.margin b/snippets/css-mode/mar.margin index 97de70c..49647e7 100644 --- a/snippets/css-mode/mar.margin +++ b/snippets/css-mode/mar.margin @@ -1,4 +1,4 @@ #contributor : rejeep #name : margin top right bottom left # -- -margin: ${top} ${right} ${bottom} ${left}; +margin: ${top} ${right} ${bottom} ${left}; \ No newline at end of file diff --git a/snippets/css-mode/mar.right b/snippets/css-mode/mar.right index 47a4973..41bac78 100644 --- a/snippets/css-mode/mar.right +++ b/snippets/css-mode/mar.right @@ -1,4 +1,4 @@ #contributor : rejeep #name : margin-right: ... # -- -margin-right: $1; +margin-right: $1; \ No newline at end of file diff --git a/snippets/css-mode/mar.top b/snippets/css-mode/mar.top index c805754..0934d80 100644 --- a/snippets/css-mode/mar.top +++ b/snippets/css-mode/mar.top @@ -1,4 +1,4 @@ #contributor : rejeep #name : margin-top: ... # -- -margin-top: $1; +margin-top: $1; \ No newline at end of file diff --git a/snippets/css-mode/pad.bottom b/snippets/css-mode/pad.bottom index 3b9495e..b8915c8 100644 --- a/snippets/css-mode/pad.bottom +++ b/snippets/css-mode/pad.bottom @@ -1,4 +1,4 @@ #contributor : rejeep #name : padding-bottom: ... # -- -padding-bottom: $1; +padding-bottom: $1; \ No newline at end of file diff --git a/snippets/css-mode/pad.left b/snippets/css-mode/pad.left index ecae515..d4927f5 100644 --- a/snippets/css-mode/pad.left +++ b/snippets/css-mode/pad.left @@ -1,4 +1,4 @@ #contributor : rejeep #name : padding-left: ... # -- -padding-left: $1; +padding-left: $1; \ No newline at end of file diff --git a/snippets/css-mode/pad.pad b/snippets/css-mode/pad.pad index ee3a682..6359283 100644 --- a/snippets/css-mode/pad.pad +++ b/snippets/css-mode/pad.pad @@ -1,4 +1,4 @@ #contributor : rejeep #name : padding: ... # -- -padding: $1; +padding: $1; \ No newline at end of file diff --git a/snippets/css-mode/pad.padding b/snippets/css-mode/pad.padding index c1009d3..05fc4e6 100644 --- a/snippets/css-mode/pad.padding +++ b/snippets/css-mode/pad.padding @@ -1,4 +1,4 @@ #contributor : rejeep #name : padding: top right bottom left # -- -padding: ${top} ${right} ${bottom} ${left}; +padding: ${top} ${right} ${bottom} ${left}; \ No newline at end of file diff --git a/snippets/css-mode/pad.right b/snippets/css-mode/pad.right index 98a9e12..bb8f3d3 100644 --- a/snippets/css-mode/pad.right +++ b/snippets/css-mode/pad.right @@ -1,4 +1,4 @@ #contributor : rejeep #name : padding-right: ... # -- -padding-right: $1; +padding-right: $1; \ No newline at end of file diff --git a/snippets/css-mode/pad.top b/snippets/css-mode/pad.top index 34987f6..992d649 100644 --- a/snippets/css-mode/pad.top +++ b/snippets/css-mode/pad.top @@ -1,4 +1,4 @@ #contributor : rejeep #name : padding-top: ... # -- -padding-top: $1; +padding-top: $1; \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/autoload.yasnippet b/snippets/emacs-lisp-mode/autoload.yasnippet index 91e7d73..c497482 100755 --- a/snippets/emacs-lisp-mode/autoload.yasnippet +++ b/snippets/emacs-lisp-mode/autoload.yasnippet @@ -2,5 +2,4 @@ #name: autoload #key: autoload # -- -(autoload 'FUNCNAME$0 "FILENAME" &optional "DOCSTRING" INTERACTIVE TYPE) - +(autoload 'FUNCNAME$0 "FILENAME" &optional "DOCSTRING" INTERACTIVE TYPE) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/bounds-of-thing-at-point.yasnippet b/snippets/emacs-lisp-mode/bounds-of-thing-at-point.yasnippet index 103d0f8..6d645b6 100755 --- a/snippets/emacs-lisp-mode/bounds-of-thing-at-point.yasnippet +++ b/snippets/emacs-lisp-mode/bounds-of-thing-at-point.yasnippet @@ -3,5 +3,4 @@ #key: bounds-of-thing-at-point #key: botap # -- -(bounds-of-thing-at-point '$0) ; symbol, list, sexp, defun, filename, url, email, word, sentence, whitespace, line, page ... - +(bounds-of-thing-at-point '$0) ; symbol, list, sexp, defun, filename, url, email, word, sentence, whitespace, line, page ... \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/buffer-substring-no-properties.yasnippet b/snippets/emacs-lisp-mode/buffer-substring-no-properties.yasnippet index 56708c0..adb8270 100755 --- a/snippets/emacs-lisp-mode/buffer-substring-no-properties.yasnippet +++ b/snippets/emacs-lisp-mode/buffer-substring-no-properties.yasnippet @@ -3,4 +3,4 @@ #key: buffer-substring-no-properties #key: bsnp # -- -(buffer-substring-no-properties START$0 END) +(buffer-substring-no-properties START$0 END) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/buffer-substring.yasnippet b/snippets/emacs-lisp-mode/buffer-substring.yasnippet index 8f1b19e..0c08119 100755 --- a/snippets/emacs-lisp-mode/buffer-substring.yasnippet +++ b/snippets/emacs-lisp-mode/buffer-substring.yasnippet @@ -3,4 +3,4 @@ #key: buffer-substring #key: bs # -- -(buffer-substring START$0 END) +(buffer-substring START$0 END) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/f.yasnippet b/snippets/emacs-lisp-mode/f.yasnippet index 34e3a80..011a606 100755 --- a/snippets/emacs-lisp-mode/f.yasnippet +++ b/snippets/emacs-lisp-mode/f.yasnippet @@ -2,4 +2,4 @@ #name: format #key: format # -- -(format "$0" &optional OBJECTS) +(format "$0" &optional OBJECTS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/format.yasnippet b/snippets/emacs-lisp-mode/format.yasnippet index 34e3a80..011a606 100755 --- a/snippets/emacs-lisp-mode/format.yasnippet +++ b/snippets/emacs-lisp-mode/format.yasnippet @@ -2,4 +2,4 @@ #name: format #key: format # -- -(format "$0" &optional OBJECTS) +(format "$0" &optional OBJECTS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/replace-regexp-in-string.yasnippet b/snippets/emacs-lisp-mode/replace-regexp-in-string.yasnippet index a396e88..edf7f5b 100755 --- a/snippets/emacs-lisp-mode/replace-regexp-in-string.yasnippet +++ b/snippets/emacs-lisp-mode/replace-regexp-in-string.yasnippet @@ -3,4 +3,4 @@ #key: replace-regexp-in-string #key: rris # -- -(replace-regexp-in-string REGEXP$0 REP STRING &optional FIXEDCASE LITERAL SUBEXP START) +(replace-regexp-in-string REGEXP$0 REP STRING &optional FIXEDCASE LITERAL SUBEXP START) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/substring.yasnippet b/snippets/emacs-lisp-mode/substring.yasnippet index b35cf6b..8ab6b49 100755 --- a/snippets/emacs-lisp-mode/substring.yasnippet +++ b/snippets/emacs-lisp-mode/substring.yasnippet @@ -2,4 +2,4 @@ #name: substring #key: substring # -- -(substring STRING$0 FROM &optional TO) +(substring STRING$0 FROM &optional TO) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/thing-at-point.yasnippet b/snippets/emacs-lisp-mode/thing-at-point.yasnippet index 412c431..9c6e189 100755 --- a/snippets/emacs-lisp-mode/thing-at-point.yasnippet +++ b/snippets/emacs-lisp-mode/thing-at-point.yasnippet @@ -3,5 +3,4 @@ #key: thing-at-point #key: tap # -- -(thing-at-point '$0) ; symbol, list, sexp, defun, filename, url, email, word, sentence, whitespace, line, page ... - +(thing-at-point '$0) ; symbol, list, sexp, defun, filename, url, email, word, sentence, whitespace, line, page ... \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-dired.process_marked.yasnippet b/snippets/emacs-lisp-mode/x-dired.process_marked.yasnippet index 30b20cb..4e446f9 100755 --- a/snippets/emacs-lisp-mode/x-dired.process_marked.yasnippet +++ b/snippets/emacs-lisp-mode/x-dired.process_marked.yasnippet @@ -13,4 +13,4 @@ (mapc 'myProcessFile (dired-get-marked-files)) ) -;; to use it, type M-x dired-myProcessFile +;; to use it, type M-x dired-myProcessFile \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-file.process.yasnippet b/snippets/emacs-lisp-mode/x-file.process.yasnippet index 7e09cb8..3e22986 100755 --- a/snippets/emacs-lisp-mode/x-file.process.yasnippet +++ b/snippets/emacs-lisp-mode/x-file.process.yasnippet @@ -14,4 +14,4 @@ ;; ... do something here ;; (write-file fpath) ;; write back to the file - (kill-buffer " myTemp"))) + (kill-buffer " myTemp"))) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-find-replace.yasnippet b/snippets/emacs-lisp-mode/x-find-replace.yasnippet index 13c3b02..dad0430 100755 --- a/snippets/emacs-lisp-mode/x-find-replace.yasnippet +++ b/snippets/emacs-lisp-mode/x-find-replace.yasnippet @@ -14,4 +14,4 @@ This works on the current region." (goto-char (point-min)) (while (search-forward ">" nil t) (replace-match ">" nil t)) ) - ) + ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-grabstring.yasnippet b/snippets/emacs-lisp-mode/x-grabstring.yasnippet index 5e6aa58..272bc51 100755 --- a/snippets/emacs-lisp-mode/x-grabstring.yasnippet +++ b/snippets/emacs-lisp-mode/x-grabstring.yasnippet @@ -1,4 +1,4 @@ #contributor: Xah Lee (XahLee.org) #name: grab buffer substring # -- -(setq $0 (buffer-substring-no-properties myStartPos myEndPos)) +(setq $0 (buffer-substring-no-properties myStartPos myEndPos)) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-grabthing.yasnippet b/snippets/emacs-lisp-mode/x-grabthing.yasnippet index 3f4f52c..ec6aed4 100755 --- a/snippets/emacs-lisp-mode/x-grabthing.yasnippet +++ b/snippets/emacs-lisp-mode/x-grabthing.yasnippet @@ -1,4 +1,4 @@ #contributor: Xah Lee (XahLee.org) #name: grab word under cursor # -- -(setq $0 (thing-at-point 'symbol)) +(setq $0 (thing-at-point 'symbol)) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-traverse_dir.yasnippet b/snippets/emacs-lisp-mode/x-traverse_dir.yasnippet index 09da5f2..9547eea 100755 --- a/snippets/emacs-lisp-mode/x-traverse_dir.yasnippet +++ b/snippets/emacs-lisp-mode/x-traverse_dir.yasnippet @@ -3,4 +3,4 @@ # -- ;; apply a function to all files in a dir (require 'find-lisp) -(mapc 'my-process-file (find-lisp-find-files "~/myweb/" "\\.html$")) +(mapc 'my-process-file (find-lisp-find-files "~/myweb/" "\\.html$")) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-word-or-region.yasnippet b/snippets/emacs-lisp-mode/x-word-or-region.yasnippet index 0f3d1b8..67c6761 100755 --- a/snippets/emacs-lisp-mode/x-word-or-region.yasnippet +++ b/snippets/emacs-lisp-mode/x-word-or-region.yasnippet @@ -24,4 +24,4 @@ (insert "newText") ; insert your new text ) -) +) \ No newline at end of file diff --git a/snippets/erlang-mode/after b/snippets/erlang-mode/after index 264e201..f20fe88 100644 --- a/snippets/erlang-mode/after +++ b/snippets/erlang-mode/after @@ -1,4 +1,4 @@ #name : after ... -> # -- after - $1 -> $0 + $1 -> $0 \ No newline at end of file diff --git a/snippets/erlang-mode/begin b/snippets/erlang-mode/begin index 7b48494..512374a 100644 --- a/snippets/erlang-mode/begin +++ b/snippets/erlang-mode/begin @@ -2,4 +2,4 @@ # -- begin $0 -end +end \ No newline at end of file diff --git a/snippets/erlang-mode/beh b/snippets/erlang-mode/beh index 4975b26..43fd971 100644 --- a/snippets/erlang-mode/beh +++ b/snippets/erlang-mode/beh @@ -1,4 +1,4 @@ #name : -behaviour(...). # -- -behaviour(${1:gen_server}). -$0 +$0 \ No newline at end of file diff --git a/snippets/erlang-mode/case b/snippets/erlang-mode/case index 5bed114..1a4ada5 100644 --- a/snippets/erlang-mode/case +++ b/snippets/erlang-mode/case @@ -2,4 +2,4 @@ # -- case $1 of $0 -end +end \ No newline at end of file diff --git a/snippets/erlang-mode/compile b/snippets/erlang-mode/compile index ae3a4d8..c369368 100644 --- a/snippets/erlang-mode/compile +++ b/snippets/erlang-mode/compile @@ -1,4 +1,4 @@ #name : -compile(...). # -- -compile([${1:export_all}]). -$0 +$0 \ No newline at end of file diff --git a/snippets/erlang-mode/def b/snippets/erlang-mode/def index 6fb92f1..ccbe5fb 100644 --- a/snippets/erlang-mode/def +++ b/snippets/erlang-mode/def @@ -1,4 +1,4 @@ #name : -define(...,...). # -- -define($1,$2). -$0 +$0 \ No newline at end of file diff --git a/snippets/erlang-mode/exp b/snippets/erlang-mode/exp index 67f56da..9000140 100644 --- a/snippets/erlang-mode/exp +++ b/snippets/erlang-mode/exp @@ -2,4 +2,4 @@ #contributor : hitesh # -- -export([${1:start/0}]). -$0 +$0 \ No newline at end of file diff --git a/snippets/erlang-mode/fun b/snippets/erlang-mode/fun index 77f8293..366f488 100644 --- a/snippets/erlang-mode/fun +++ b/snippets/erlang-mode/fun @@ -1,3 +1,3 @@ #name : fun (...) -> ... end # -- -fun ($1) -> $0 end +fun ($1) -> $0 end \ No newline at end of file diff --git a/snippets/erlang-mode/if b/snippets/erlang-mode/if index 45674c4..4f2271a 100644 --- a/snippets/erlang-mode/if +++ b/snippets/erlang-mode/if @@ -3,4 +3,4 @@ if $1 -> $2; true -> $0 -end +end \ No newline at end of file diff --git a/snippets/erlang-mode/ifdef b/snippets/erlang-mode/ifdef index ea89ecf..daf9479 100644 --- a/snippets/erlang-mode/ifdef +++ b/snippets/erlang-mode/ifdef @@ -2,4 +2,4 @@ # -- -ifdef($1). $0 --endif. +-endif. \ No newline at end of file diff --git a/snippets/erlang-mode/ifndef b/snippets/erlang-mode/ifndef index dcd67a7..bae9948 100644 --- a/snippets/erlang-mode/ifndef +++ b/snippets/erlang-mode/ifndef @@ -2,4 +2,4 @@ # -- -ifndef($1). $0 --endif. +-endif. \ No newline at end of file diff --git a/snippets/erlang-mode/imp b/snippets/erlang-mode/imp index c035ddd..233aa79 100644 --- a/snippets/erlang-mode/imp +++ b/snippets/erlang-mode/imp @@ -2,4 +2,4 @@ #contributor : hitesh # -- -import(${1:lists}, [${2:map/2, sum/1}]). -$0 +$0 \ No newline at end of file diff --git a/snippets/erlang-mode/inc b/snippets/erlang-mode/inc index f7b2161..1e7cee7 100644 --- a/snippets/erlang-mode/inc +++ b/snippets/erlang-mode/inc @@ -1,4 +1,4 @@ #name : -include("..."). # -- -include("$1"). -$0 +$0 \ No newline at end of file diff --git a/snippets/erlang-mode/inc.lib b/snippets/erlang-mode/inc.lib index 09a6723..b98bc1a 100644 --- a/snippets/erlang-mode/inc.lib +++ b/snippets/erlang-mode/inc.lib @@ -1,4 +1,4 @@ #name : -include_lib("..."). # -- -include_lib("$1"). -$0 +$0 \ No newline at end of file diff --git a/snippets/erlang-mode/loop b/snippets/erlang-mode/loop index 0205802..151be85 100644 --- a/snippets/erlang-mode/loop +++ b/snippets/erlang-mode/loop @@ -5,4 +5,4 @@ ${1:loop}($2) -> ${3:_} -> $1($2) end. -$0 +$0 \ No newline at end of file diff --git a/snippets/erlang-mode/mod b/snippets/erlang-mode/mod index 7275d39..58a8eff 100644 --- a/snippets/erlang-mode/mod +++ b/snippets/erlang-mode/mod @@ -3,4 +3,4 @@ # -- -module(${1:`(file-name-nondirectory (file-name-sans-extension (or (buffer-file-name) (buffer-name))))`}). -$0 +$0 \ No newline at end of file diff --git a/snippets/erlang-mode/rcv b/snippets/erlang-mode/rcv index 804fb3f..37586ff 100644 --- a/snippets/erlang-mode/rcv +++ b/snippets/erlang-mode/rcv @@ -2,4 +2,4 @@ # -- receive $1 -> $0 -end +end \ No newline at end of file diff --git a/snippets/erlang-mode/rcv.after b/snippets/erlang-mode/rcv.after index 51046df..96d0634 100644 --- a/snippets/erlang-mode/rcv.after +++ b/snippets/erlang-mode/rcv.after @@ -3,4 +3,4 @@ receive after $1 -> $0 -end +end \ No newline at end of file diff --git a/snippets/erlang-mode/rec b/snippets/erlang-mode/rec index 0d67834..958fc20 100644 --- a/snippets/erlang-mode/rec +++ b/snippets/erlang-mode/rec @@ -1,4 +1,4 @@ #name : -record(...,{...}). # -- -record($1,{$2}). -$0 +$0 \ No newline at end of file diff --git a/snippets/erlang-mode/try b/snippets/erlang-mode/try index fa5c9c2..f40ea42 100644 --- a/snippets/erlang-mode/try +++ b/snippets/erlang-mode/try @@ -4,4 +4,4 @@ try $1 of $0 catch after -end +end \ No newline at end of file diff --git a/snippets/erlang-mode/undef b/snippets/erlang-mode/undef index 7ab5dd4..8e37217 100644 --- a/snippets/erlang-mode/undef +++ b/snippets/erlang-mode/undef @@ -1,4 +1,4 @@ #name : -undef(...). # -- -undef($1). -$0 +$0 \ No newline at end of file diff --git a/snippets/f90-mode/au b/snippets/f90-mode/au index 1f0af73..e9cdaf9 100644 --- a/snippets/f90-mode/au +++ b/snippets/f90-mode/au @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : automatic # -- -automatic $0 +automatic $0 \ No newline at end of file diff --git a/snippets/f90-mode/bd b/snippets/f90-mode/bd index 8840102..811caf6 100644 --- a/snippets/f90-mode/bd +++ b/snippets/f90-mode/bd @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : block data # -- -block data $0 +block data $0 \ No newline at end of file diff --git a/snippets/f90-mode/c b/snippets/f90-mode/c index c7182e4..e2f85ba 100644 --- a/snippets/f90-mode/c +++ b/snippets/f90-mode/c @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : continue # -- -continue $0 +continue $0 \ No newline at end of file diff --git a/snippets/f90-mode/ch b/snippets/f90-mode/ch index 7e6b4cb..212637e 100644 --- a/snippets/f90-mode/ch +++ b/snippets/f90-mode/ch @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : character # -- -character $0 +character $0 \ No newline at end of file diff --git a/snippets/f90-mode/cx b/snippets/f90-mode/cx index 8feb41e..d7a9db1 100644 --- a/snippets/f90-mode/cx +++ b/snippets/f90-mode/cx @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : complex # -- -complex $0 +complex $0 \ No newline at end of file diff --git a/snippets/f90-mode/dc b/snippets/f90-mode/dc index 1992b1b..76d9827 100644 --- a/snippets/f90-mode/dc +++ b/snippets/f90-mode/dc @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : double complex # -- -double complex $0 +double complex $0 \ No newline at end of file diff --git a/snippets/f90-mode/do b/snippets/f90-mode/do index 2c117fd..813ceeb 100644 --- a/snippets/f90-mode/do +++ b/snippets/f90-mode/do @@ -3,4 +3,4 @@ # -- do while (${1:condition}) $0 -end do +end do \ No newline at end of file diff --git a/snippets/f90-mode/dp b/snippets/f90-mode/dp index ad014b7..2159e36 100644 --- a/snippets/f90-mode/dp +++ b/snippets/f90-mode/dp @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : double precision # -- -double precision $0 +double precision $0 \ No newline at end of file diff --git a/snippets/f90-mode/eq b/snippets/f90-mode/eq index 0c6d09f..ad9f78d 100644 --- a/snippets/f90-mode/eq +++ b/snippets/f90-mode/eq @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : equivalence # -- -equivalence $0 +equivalence $0 \ No newline at end of file diff --git a/snippets/f90-mode/ib b/snippets/f90-mode/ib index 9275a12..e3d5ea7 100644 --- a/snippets/f90-mode/ib +++ b/snippets/f90-mode/ib @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : implicit byte # -- -implicit byte $0 +implicit byte $0 \ No newline at end of file diff --git a/snippets/f90-mode/ic b/snippets/f90-mode/ic index 79842ea..dd08d6d 100644 --- a/snippets/f90-mode/ic +++ b/snippets/f90-mode/ic @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : implicit complex # -- -implicit complex $0 +implicit complex $0 \ No newline at end of file diff --git a/snippets/f90-mode/ich b/snippets/f90-mode/ich index 53c7f81..eb156c6 100644 --- a/snippets/f90-mode/ich +++ b/snippets/f90-mode/ich @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : implicit character # -- -implicit character $0 +implicit character $0 \ No newline at end of file diff --git a/snippets/f90-mode/if b/snippets/f90-mode/if index b4fb526..8554a85 100644 --- a/snippets/f90-mode/if +++ b/snippets/f90-mode/if @@ -3,4 +3,4 @@ # -- if ( ${1:condition} ) then $0 -end if +end if \ No newline at end of file diff --git a/snippets/f90-mode/ii b/snippets/f90-mode/ii index 4b1fee5..7d7d442 100644 --- a/snippets/f90-mode/ii +++ b/snippets/f90-mode/ii @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : implicit integer # -- -implicit integer $0 +implicit integer $0 \ No newline at end of file diff --git a/snippets/f90-mode/il b/snippets/f90-mode/il index 8658af5..2596f3a 100644 --- a/snippets/f90-mode/il +++ b/snippets/f90-mode/il @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : implicit logical # -- -implicit logical $0 +implicit logical $0 \ No newline at end of file diff --git a/snippets/f90-mode/in b/snippets/f90-mode/in index 0c1d5e1..c7183c0 100644 --- a/snippets/f90-mode/in +++ b/snippets/f90-mode/in @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : implicit none # -- -implicit none +implicit none \ No newline at end of file diff --git a/snippets/f90-mode/inc b/snippets/f90-mode/inc index dd649c4..408991a 100644 --- a/snippets/f90-mode/inc +++ b/snippets/f90-mode/inc @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : include # -- -include $0 +include $0 \ No newline at end of file diff --git a/snippets/f90-mode/intr b/snippets/f90-mode/intr index 147fffd..80d8322 100644 --- a/snippets/f90-mode/intr +++ b/snippets/f90-mode/intr @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : intrinsic # -- -intrinsic $0 +intrinsic $0 \ No newline at end of file diff --git a/snippets/f90-mode/ir b/snippets/f90-mode/ir index fb37082..26d43e1 100644 --- a/snippets/f90-mode/ir +++ b/snippets/f90-mode/ir @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : implicit real # -- -implicit real $0 +implicit real $0 \ No newline at end of file diff --git a/snippets/f90-mode/l b/snippets/f90-mode/l index 8605d69..c048eea 100644 --- a/snippets/f90-mode/l +++ b/snippets/f90-mode/l @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : logical # -- -logical $0 +logical $0 \ No newline at end of file diff --git a/snippets/f90-mode/pa b/snippets/f90-mode/pa index 1b1b503..fcc133c 100644 --- a/snippets/f90-mode/pa +++ b/snippets/f90-mode/pa @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : parameter # -- -parameter $0 +parameter $0 \ No newline at end of file diff --git a/snippets/f90-mode/pr b/snippets/f90-mode/pr index e0f8baa..1689d8c 100644 --- a/snippets/f90-mode/pr +++ b/snippets/f90-mode/pr @@ -3,4 +3,4 @@ # -- program ${1:name} $0 -end program ${1:name} +end program ${1:name} \ No newline at end of file diff --git a/snippets/f90-mode/re b/snippets/f90-mode/re index 08c7ba0..6121c80 100644 --- a/snippets/f90-mode/re +++ b/snippets/f90-mode/re @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : read (*,*) # -- -read (${1:*},${2:*}) $0 +read (${1:*},${2:*}) $0 \ No newline at end of file diff --git a/snippets/f90-mode/st b/snippets/f90-mode/st index 23ae7d0..e5fbb4c 100644 --- a/snippets/f90-mode/st +++ b/snippets/f90-mode/st @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : structure # -- -structure $0 +structure $0 \ No newline at end of file diff --git a/snippets/f90-mode/su b/snippets/f90-mode/su index d3857b8..d23ae55 100644 --- a/snippets/f90-mode/su +++ b/snippets/f90-mode/su @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : subroutine # -- -subroutine $0 +subroutine $0 \ No newline at end of file diff --git a/snippets/f90-mode/wr b/snippets/f90-mode/wr index 1ac3eb9..1b5a7ef 100644 --- a/snippets/f90-mode/wr +++ b/snippets/f90-mode/wr @@ -1,4 +1,4 @@ #contributor: Li Zhu #name : write (*,*) # -- -write (${1:*},${2:*}) $0 +write (${1:*},${2:*}) $0 \ No newline at end of file diff --git a/snippets/html-mode/b.yasnippet b/snippets/html-mode/b.yasnippet index 4e3abdb..ea6f3bb 100755 --- a/snippets/html-mode/b.yasnippet +++ b/snippets/html-mode/b.yasnippet @@ -1,4 +1,4 @@ #contributor : Xah Lee xahlee.org #name : ... # -- -$0 +$0 \ No newline at end of file diff --git a/snippets/html-mode/dov b/snippets/html-mode/dov index e8341ea..fcd0a78 100644 --- a/snippets/html-mode/dov +++ b/snippets/html-mode/dov @@ -8,4 +8,4 @@ a mirror up here $3 actually some other shit and $3 - + \ No newline at end of file diff --git a/snippets/html-mode/header/h1 b/snippets/html-mode/header/h1 index dffe61e..68ccf00 100644 --- a/snippets/html-mode/header/h1 +++ b/snippets/html-mode/header/h1 @@ -1,4 +1,4 @@ #contributor : Jimmy Wu #name :

...

# -- -

$1

+

$1

\ No newline at end of file diff --git a/snippets/html-mode/header/h2 b/snippets/html-mode/header/h2 index d785865..abeb586 100644 --- a/snippets/html-mode/header/h2 +++ b/snippets/html-mode/header/h2 @@ -1,4 +1,4 @@ #contributor : Jimmy Wu #name :

...

# -- -

$1

+

$1

\ No newline at end of file diff --git a/snippets/html-mode/header/h3 b/snippets/html-mode/header/h3 index 415261a..cc4b16e 100644 --- a/snippets/html-mode/header/h3 +++ b/snippets/html-mode/header/h3 @@ -1,4 +1,4 @@ #contributor : Jimmy Wu #name :

...

# -- -

$1

+

$1

\ No newline at end of file diff --git a/snippets/html-mode/header/h4 b/snippets/html-mode/header/h4 index 66ab06a..53acb57 100644 --- a/snippets/html-mode/header/h4 +++ b/snippets/html-mode/header/h4 @@ -1,4 +1,4 @@ #contributor : Jimmy Wu #name :

...

# -- -

$1

+

$1

\ No newline at end of file diff --git a/snippets/html-mode/header/h5 b/snippets/html-mode/header/h5 index 0c41b22..e9bd313 100644 --- a/snippets/html-mode/header/h5 +++ b/snippets/html-mode/header/h5 @@ -1,4 +1,4 @@ #contributor : Jimmy Wu #name :
...
# -- -
$1
+
$1
\ No newline at end of file diff --git a/snippets/html-mode/header/h6 b/snippets/html-mode/header/h6 index 5670bc2..6c677af 100644 --- a/snippets/html-mode/header/h6 +++ b/snippets/html-mode/header/h6 @@ -1,4 +1,4 @@ #contributor : Jimmy Wu #name :
...
# -- -
$1
+
$1
\ No newline at end of file diff --git a/snippets/html-mode/hr b/snippets/html-mode/hr index 20e38b5..74c62d3 100644 --- a/snippets/html-mode/hr +++ b/snippets/html-mode/hr @@ -1,4 +1,4 @@ #contributor : Jimmy Wu #name :
# -- -
+
\ No newline at end of file diff --git a/snippets/html-mode/html b/snippets/html-mode/html index 93a0ad7..8c37883 100644 --- a/snippets/html-mode/html +++ b/snippets/html-mode/html @@ -3,4 +3,4 @@ # -- $0 - + \ No newline at end of file diff --git a/snippets/html-mode/html.xmlns b/snippets/html-mode/html.xmlns index fd6adc8..fa26195 100644 --- a/snippets/html-mode/html.xmlns +++ b/snippets/html-mode/html.xmlns @@ -3,4 +3,4 @@ # -- $0 - + \ No newline at end of file diff --git a/snippets/html-mode/i.yasnippet b/snippets/html-mode/i.yasnippet index f962788..84f05ac 100755 --- a/snippets/html-mode/i.yasnippet +++ b/snippets/html-mode/i.yasnippet @@ -1,4 +1,4 @@ #contributor : Xah Lee xahlee.org #name : ... # -- -$0 +$0 \ No newline at end of file diff --git a/snippets/html-mode/list/dd b/snippets/html-mode/list/dd index e447d4a..7e339c0 100644 --- a/snippets/html-mode/list/dd +++ b/snippets/html-mode/list/dd @@ -1,4 +1,4 @@ #contributor : Rodrigo Setti #name :
...
# -- -
$1
+
$1
\ No newline at end of file diff --git a/snippets/html-mode/list/dl b/snippets/html-mode/list/dl index a75c875..db3e762 100644 --- a/snippets/html-mode/list/dl +++ b/snippets/html-mode/list/dl @@ -3,4 +3,4 @@ # --
$0 -
+ \ No newline at end of file diff --git a/snippets/html-mode/list/dl.id b/snippets/html-mode/list/dl.id index 28a6d37..f635606 100644 --- a/snippets/html-mode/list/dl.id +++ b/snippets/html-mode/list/dl.id @@ -3,4 +3,4 @@ # --
$0 -
+ \ No newline at end of file diff --git a/snippets/html-mode/list/dt b/snippets/html-mode/list/dt index 024cce4..bd950f7 100644 --- a/snippets/html-mode/list/dt +++ b/snippets/html-mode/list/dt @@ -1,4 +1,4 @@ #contributor : Rodrigo Setti #name :
...
# -- -
$1
+
$1
\ No newline at end of file diff --git a/snippets/html-mode/list/li b/snippets/html-mode/list/li index a199ca3..a38961c 100644 --- a/snippets/html-mode/list/li +++ b/snippets/html-mode/list/li @@ -1,4 +1,4 @@ #contributor : Jimmy Wu #name :
  • ...
  • # -- -
  • $1
  • +
  • $1
  • \ No newline at end of file diff --git a/snippets/html-mode/list/li.class b/snippets/html-mode/list/li.class index 313f512..9f0443c 100644 --- a/snippets/html-mode/list/li.class +++ b/snippets/html-mode/list/li.class @@ -1,4 +1,4 @@ #contributor : Jimmy Wu #name :
  • ...
  • # -- -
  • $2
  • +
  • $2
  • \ No newline at end of file diff --git a/snippets/html-mode/list/ol b/snippets/html-mode/list/ol index 74057c8..6d8f2f2 100644 --- a/snippets/html-mode/list/ol +++ b/snippets/html-mode/list/ol @@ -3,4 +3,4 @@ # --
      $0 -
    + \ No newline at end of file diff --git a/snippets/html-mode/list/ol.class b/snippets/html-mode/list/ol.class index fc24485..3b7b1e3 100644 --- a/snippets/html-mode/list/ol.class +++ b/snippets/html-mode/list/ol.class @@ -3,4 +3,4 @@ # --
      $0 -
    + \ No newline at end of file diff --git a/snippets/html-mode/list/ol.id b/snippets/html-mode/list/ol.id index f875ff2..f1db682 100644 --- a/snippets/html-mode/list/ol.id +++ b/snippets/html-mode/list/ol.id @@ -3,4 +3,4 @@ # --
      $0 -
    + \ No newline at end of file diff --git a/snippets/html-mode/list/ul b/snippets/html-mode/list/ul index 5c6aeb2..cf4a393 100644 --- a/snippets/html-mode/list/ul +++ b/snippets/html-mode/list/ul @@ -3,4 +3,4 @@ # --
      $0 -
    + \ No newline at end of file diff --git a/snippets/html-mode/list/ul.class b/snippets/html-mode/list/ul.class index bc27649..6c59820 100644 --- a/snippets/html-mode/list/ul.class +++ b/snippets/html-mode/list/ul.class @@ -3,4 +3,4 @@ # --
      $0 -
    + \ No newline at end of file diff --git a/snippets/html-mode/list/ul.id b/snippets/html-mode/list/ul.id index c323e7a..6a96009 100644 --- a/snippets/html-mode/list/ul.id +++ b/snippets/html-mode/list/ul.id @@ -3,4 +3,4 @@ # --
      $0 -
    + \ No newline at end of file diff --git a/snippets/html-mode/meta/doctype b/snippets/html-mode/meta/doctype index 91e1109..5e678d5 100644 --- a/snippets/html-mode/meta/doctype +++ b/snippets/html-mode/meta/doctype @@ -1,3 +1,3 @@ #name : Doctype HTML 4.01 Strict # -- - + \ No newline at end of file diff --git a/snippets/html-mode/meta/doctype.xhml1 b/snippets/html-mode/meta/doctype.xhml1 index 63781f8..c5cfb6f 100644 --- a/snippets/html-mode/meta/doctype.xhml1 +++ b/snippets/html-mode/meta/doctype.xhml1 @@ -1,3 +1,3 @@ #name : DocType XHTML 1.0 frameset # -- - + \ No newline at end of file diff --git a/snippets/html-mode/meta/doctype.xhtml1_1 b/snippets/html-mode/meta/doctype.xhtml1_1 index deaca2f..72076c0 100644 --- a/snippets/html-mode/meta/doctype.xhtml1_1 +++ b/snippets/html-mode/meta/doctype.xhtml1_1 @@ -1,3 +1,3 @@ #name : DocType XHTML 1.1 # -- - + \ No newline at end of file diff --git a/snippets/html-mode/meta/doctype.xhtml1_strict b/snippets/html-mode/meta/doctype.xhtml1_strict index 1db1c92..176616b 100644 --- a/snippets/html-mode/meta/doctype.xhtml1_strict +++ b/snippets/html-mode/meta/doctype.xhtml1_strict @@ -1,3 +1,3 @@ #name : DocType XHTML 1.0 Strict # -- - + \ No newline at end of file diff --git a/snippets/html-mode/meta/doctype.xhtml1_transitional b/snippets/html-mode/meta/doctype.xhtml1_transitional index e138ac4..d6b6bae 100644 --- a/snippets/html-mode/meta/doctype.xhtml1_transitional +++ b/snippets/html-mode/meta/doctype.xhtml1_transitional @@ -1,3 +1,3 @@ #name : DocType XHTML 1.0 Transitional # -- - + \ No newline at end of file diff --git a/snippets/html-mode/meta/meta b/snippets/html-mode/meta/meta index a4fd453..8495052 100644 --- a/snippets/html-mode/meta/meta +++ b/snippets/html-mode/meta/meta @@ -1,4 +1,4 @@ #contributor : Jimmy Wu #name : # -- - + \ No newline at end of file diff --git a/snippets/html-mode/meta/meta.http-equiv b/snippets/html-mode/meta/meta.http-equiv index 947e7fb..55a438a 100644 --- a/snippets/html-mode/meta/meta.http-equiv +++ b/snippets/html-mode/meta/meta.http-equiv @@ -1,4 +1,4 @@ #contributor : Jimmy Wu #name : # -- - + \ No newline at end of file diff --git a/snippets/html-mode/q.yasnippet b/snippets/html-mode/q.yasnippet index 42e09bd..ce34b74 100755 --- a/snippets/html-mode/q.yasnippet +++ b/snippets/html-mode/q.yasnippet @@ -3,4 +3,4 @@ # --
    $0 -
    + \ No newline at end of file diff --git a/snippets/html-mode/table/table b/snippets/html-mode/table/table index a2ad495..3375409 100644 --- a/snippets/html-mode/table/table +++ b/snippets/html-mode/table/table @@ -3,4 +3,4 @@ # -- $0 -
    + \ No newline at end of file diff --git a/snippets/html-mode/table/td b/snippets/html-mode/table/td index 9f1aad5..d4dcf37 100644 --- a/snippets/html-mode/table/td +++ b/snippets/html-mode/table/td @@ -1,4 +1,4 @@ #contributor : Jimmy Wu #name : ... # -- -$2 +$2 \ No newline at end of file diff --git a/snippets/html-mode/table/th b/snippets/html-mode/table/th index fbae4cc..7b17a17 100644 --- a/snippets/html-mode/table/th +++ b/snippets/html-mode/table/th @@ -1,4 +1,4 @@ #contributor : Jimmy Wu #name : ... # -- -$2 +$2 \ No newline at end of file diff --git a/snippets/html-mode/table/tr b/snippets/html-mode/table/tr index 5f14238..8402cda 100644 --- a/snippets/html-mode/table/tr +++ b/snippets/html-mode/table/tr @@ -3,4 +3,4 @@ # -- $0 - + \ No newline at end of file diff --git a/snippets/latex-mode/begin b/snippets/latex-mode/begin index dc42d2f..99a7074 100644 --- a/snippets/latex-mode/begin +++ b/snippets/latex-mode/begin @@ -4,4 +4,4 @@ \begin{${1:environment}} $0 -\end{$1} +\end{$1} \ No newline at end of file diff --git a/snippets/markdown-mode/+ b/snippets/markdown-mode/+ index 0407169..34abe18 100644 --- a/snippets/markdown-mode/+ +++ b/snippets/markdown-mode/+ @@ -2,4 +2,4 @@ #contributor: Peng Deng # -- + ${1:Text} -+$0 ++$0 \ No newline at end of file diff --git a/snippets/markdown-mode/- b/snippets/markdown-mode/- index 9d5c51d..e49af13 100644 --- a/snippets/markdown-mode/- +++ b/snippets/markdown-mode/- @@ -2,4 +2,4 @@ #contributor: Peng Deng # -- - ${1:Text} --$0 +-$0 \ No newline at end of file diff --git a/snippets/markdown-mode/_ b/snippets/markdown-mode/_ index 50ab476..6c57d59 100644 --- a/snippets/markdown-mode/_ +++ b/snippets/markdown-mode/_ @@ -1,4 +1,4 @@ #name : Emphasis #contributor: Peng Deng # -- -_${1:Text}_ $0 +_${1:Text}_ $0 \ No newline at end of file diff --git a/snippets/markdown-mode/__ b/snippets/markdown-mode/__ index b6304f3..bfe1d32 100644 --- a/snippets/markdown-mode/__ +++ b/snippets/markdown-mode/__ @@ -1,4 +1,4 @@ #name : Strong #contributor: Peng Deng # -- -**${1:Text}** $0 +**${1:Text}** $0 \ No newline at end of file diff --git a/snippets/markdown-mode/` b/snippets/markdown-mode/` index ae58211..2b3661d 100644 --- a/snippets/markdown-mode/` +++ b/snippets/markdown-mode/` @@ -1,4 +1,4 @@ #name : Inline Code #contributor: Peng Deng # -- -\`${1:Code}\` $0 +\`${1:Code}\` $0 \ No newline at end of file diff --git a/snippets/markdown-mode/h1.1 b/snippets/markdown-mode/h1.1 index 8bb7ea2..a69868b 100644 --- a/snippets/markdown-mode/h1.1 +++ b/snippets/markdown-mode/h1.1 @@ -3,4 +3,4 @@ # -- # ${1:Header 1} # -$0 +$0 \ No newline at end of file diff --git a/snippets/markdown-mode/h1.2 b/snippets/markdown-mode/h1.2 index d2e7b5b..531b94c 100644 --- a/snippets/markdown-mode/h1.2 +++ b/snippets/markdown-mode/h1.2 @@ -4,4 +4,4 @@ ${1:Header 1} ${1:$(make-string (string-width text) ?\=)} -$0 +$0 \ No newline at end of file diff --git a/snippets/markdown-mode/h2.1 b/snippets/markdown-mode/h2.1 index bfee3fc..8822e0b 100644 --- a/snippets/markdown-mode/h2.1 +++ b/snippets/markdown-mode/h2.1 @@ -3,4 +3,4 @@ # -- ## ${1:Header 1} ## -$0 +$0 \ No newline at end of file diff --git a/snippets/markdown-mode/h2.2 b/snippets/markdown-mode/h2.2 index af06045..9644490 100644 --- a/snippets/markdown-mode/h2.2 +++ b/snippets/markdown-mode/h2.2 @@ -4,4 +4,4 @@ ${1:Header 2} ${1:$(make-string (string-width text) ?\-)} -$0 +$0 \ No newline at end of file diff --git a/snippets/markdown-mode/h3 b/snippets/markdown-mode/h3 index 44a6104..6e5c558 100644 --- a/snippets/markdown-mode/h3 +++ b/snippets/markdown-mode/h3 @@ -3,4 +3,4 @@ # -- ### ${1:Header 3} ### -$0 +$0 \ No newline at end of file diff --git a/snippets/markdown-mode/h4 b/snippets/markdown-mode/h4 index 315140a..0e87dda 100644 --- a/snippets/markdown-mode/h4 +++ b/snippets/markdown-mode/h4 @@ -3,4 +3,4 @@ # -- #### ${1:Header 4} #### -$0 +$0 \ No newline at end of file diff --git a/snippets/markdown-mode/h5 b/snippets/markdown-mode/h5 index f50a785..76fa82e 100644 --- a/snippets/markdown-mode/h5 +++ b/snippets/markdown-mode/h5 @@ -3,4 +3,4 @@ # -- ##### ${1:Header 5} ##### -$0 +$0 \ No newline at end of file diff --git a/snippets/markdown-mode/h6 b/snippets/markdown-mode/h6 index 1cdfebb..4ad6f65 100644 --- a/snippets/markdown-mode/h6 +++ b/snippets/markdown-mode/h6 @@ -3,4 +3,4 @@ # -- ###### ${1:Header 6} ###### -$0 +$0 \ No newline at end of file diff --git a/snippets/markdown-mode/hr.1 b/snippets/markdown-mode/hr.1 index 5fbe4f4..8bffe6d 100644 --- a/snippets/markdown-mode/hr.1 +++ b/snippets/markdown-mode/hr.1 @@ -4,4 +4,4 @@ ---------- -$0 +$0 \ No newline at end of file diff --git a/snippets/markdown-mode/hr.2 b/snippets/markdown-mode/hr.2 index 2d4de22..a3ababf 100644 --- a/snippets/markdown-mode/hr.2 +++ b/snippets/markdown-mode/hr.2 @@ -4,4 +4,4 @@ ******* -$0 +$0 \ No newline at end of file diff --git a/snippets/markdown-mode/img b/snippets/markdown-mode/img index 69ee77d..83ec982 100644 --- a/snippets/markdown-mode/img +++ b/snippets/markdown-mode/img @@ -1,4 +1,4 @@ #name : Image #contributor: Peng Deng # -- -![${1:Alt Text}](${2:URL} $3) $0 +![${1:Alt Text}](${2:URL} $3) $0 \ No newline at end of file diff --git a/snippets/markdown-mode/link b/snippets/markdown-mode/link index dd7f99b..248fbf8 100644 --- a/snippets/markdown-mode/link +++ b/snippets/markdown-mode/link @@ -1,4 +1,4 @@ #name : Link #contributor: Peng Deng # -- -[${1:Link Text}](${2:URL} $3) $0 +[${1:Link Text}](${2:URL} $3) $0 \ No newline at end of file diff --git a/snippets/markdown-mode/ol b/snippets/markdown-mode/ol index e715669..f10f879 100644 --- a/snippets/markdown-mode/ol +++ b/snippets/markdown-mode/ol @@ -2,4 +2,4 @@ #contributor: Peng Deng # -- ${1:1}. ${2:Text} -${1:$(number-to-string (1+ (string-to-number text)))}. $0 +${1:$(number-to-string (1+ (string-to-number text)))}. $0 \ No newline at end of file diff --git a/snippets/markdown-mode/rimg b/snippets/markdown-mode/rimg index caafb60..09e7f00 100644 --- a/snippets/markdown-mode/rimg +++ b/snippets/markdown-mode/rimg @@ -1,4 +1,4 @@ #name : Referenced Image #contributor: Peng Deng # -- -![${1:Alt Text}][$2] $0 +![${1:Alt Text}][$2] $0 \ No newline at end of file diff --git a/snippets/markdown-mode/rlb b/snippets/markdown-mode/rlb index 681d9f0..f29a6ab 100644 --- a/snippets/markdown-mode/rlb +++ b/snippets/markdown-mode/rlb @@ -2,4 +2,4 @@ #contributor: Peng Deng # -- [${1:Reference}]: ${2:URL} $3 -$0 +$0 \ No newline at end of file diff --git a/snippets/markdown-mode/rlink b/snippets/markdown-mode/rlink index e35a0c0..3249f9f 100644 --- a/snippets/markdown-mode/rlink +++ b/snippets/markdown-mode/rlink @@ -1,4 +1,4 @@ #name : Reference Link #contributor: Peng Deng # -- -[${1:Link Text}][$2] $0 +[${1:Link Text}][$2] $0 \ No newline at end of file diff --git a/snippets/nxml-mode/header/h1 b/snippets/nxml-mode/header/h1 index 08972eb..e896d9f 100644 --- a/snippets/nxml-mode/header/h1 +++ b/snippets/nxml-mode/header/h1 @@ -1,4 +1,4 @@ #contributor : Anders Bach Nielsen #name :

    ...

    # -- -

    $1

    +

    $1

    \ No newline at end of file diff --git a/snippets/nxml-mode/header/h2 b/snippets/nxml-mode/header/h2 index 1dfb50a..e946982 100644 --- a/snippets/nxml-mode/header/h2 +++ b/snippets/nxml-mode/header/h2 @@ -1,4 +1,4 @@ #contributor : Anders Bach Nielsen #name :

    ...

    # -- -

    $1

    +

    $1

    \ No newline at end of file diff --git a/snippets/nxml-mode/header/h3 b/snippets/nxml-mode/header/h3 index 651bf19..3d41c45 100644 --- a/snippets/nxml-mode/header/h3 +++ b/snippets/nxml-mode/header/h3 @@ -1,4 +1,4 @@ #contributor : Anders Bach Nielsen #name :

    ...

    # -- -

    $1

    +

    $1

    \ No newline at end of file diff --git a/snippets/nxml-mode/header/h4 b/snippets/nxml-mode/header/h4 index ac01b05..c88b0ba 100644 --- a/snippets/nxml-mode/header/h4 +++ b/snippets/nxml-mode/header/h4 @@ -1,4 +1,4 @@ #contributor : Anders Bach Nielsen #name :

    ...

    # -- -

    $1

    +

    $1

    \ No newline at end of file diff --git a/snippets/nxml-mode/header/h5 b/snippets/nxml-mode/header/h5 index 8268413..9b7b12b 100644 --- a/snippets/nxml-mode/header/h5 +++ b/snippets/nxml-mode/header/h5 @@ -1,4 +1,4 @@ #contributor : Anders Bach Nielsen #name :
    ...
    # -- -
    $1
    +
    $1
    \ No newline at end of file diff --git a/snippets/nxml-mode/header/h6 b/snippets/nxml-mode/header/h6 index 3de08c1..3e8234c 100644 --- a/snippets/nxml-mode/header/h6 +++ b/snippets/nxml-mode/header/h6 @@ -1,4 +1,4 @@ #contributor : Anders Bach Nielsen #name :
    ...
    # -- -
    $1
    +
    $1
    \ No newline at end of file diff --git a/snippets/nxml-mode/hr b/snippets/nxml-mode/hr index 85d4acb..1e90c8a 100644 --- a/snippets/nxml-mode/hr +++ b/snippets/nxml-mode/hr @@ -1,4 +1,4 @@ #contributor : Anders Bach Nielsen #name :
    # -- -
    +
    \ No newline at end of file diff --git a/snippets/nxml-mode/html b/snippets/nxml-mode/html index fdcb784..e8b06f6 100644 --- a/snippets/nxml-mode/html +++ b/snippets/nxml-mode/html @@ -3,4 +3,4 @@ # -- $0 - + \ No newline at end of file diff --git a/snippets/nxml-mode/meta/doctype b/snippets/nxml-mode/meta/doctype index af8fb49..8974132 100644 --- a/snippets/nxml-mode/meta/doctype +++ b/snippets/nxml-mode/meta/doctype @@ -1,4 +1,4 @@ #contributor : Anders Bach Nielsen #name : DocType XHTML 1.1 # -- - + \ No newline at end of file diff --git a/snippets/nxml-mode/meta/doctype.xhtml1_strict b/snippets/nxml-mode/meta/doctype.xhtml1_strict index bb0b7de..d2c66d8 100644 --- a/snippets/nxml-mode/meta/doctype.xhtml1_strict +++ b/snippets/nxml-mode/meta/doctype.xhtml1_strict @@ -1,4 +1,4 @@ #contributor : Anders Bach Nielsen #name : DocType XHTML 1.0 Strict # -- - + \ No newline at end of file diff --git a/snippets/nxml-mode/meta/doctype.xhtml1_transitional b/snippets/nxml-mode/meta/doctype.xhtml1_transitional index c8c50d3..3cef6e8 100644 --- a/snippets/nxml-mode/meta/doctype.xhtml1_transitional +++ b/snippets/nxml-mode/meta/doctype.xhtml1_transitional @@ -1,4 +1,4 @@ #contributor : Anders Bach Nielsen #name : DocType XHTML 1.0 Transitional # -- - + \ No newline at end of file diff --git a/snippets/nxml-mode/meta/meta b/snippets/nxml-mode/meta/meta index a8d0e2f..8e5e6b3 100644 --- a/snippets/nxml-mode/meta/meta +++ b/snippets/nxml-mode/meta/meta @@ -1,4 +1,4 @@ #contributor : Anders Bach Nielsen #name : # -- - + \ No newline at end of file diff --git a/snippets/python-mode/class b/snippets/python-mode/class index 72f339b..78c0548 100644 --- a/snippets/python-mode/class +++ b/snippets/python-mode/class @@ -51,4 +51,4 @@ class ${1:ClassName}(${2:object}): (split-string text ","))) (concat "\n" (make-string (current-column) 32))) } - $0 + $0 \ No newline at end of file diff --git a/snippets/python-mode/def b/snippets/python-mode/def index f82f791..55f9650 100644 --- a/snippets/python-mode/def +++ b/snippets/python-mode/def @@ -32,4 +32,4 @@ def ${1:name}($2): (list "" "Arguments:" args (make-string 3 34)) indent))) } - $0 + $0 \ No newline at end of file diff --git a/snippets/python-mode/defm b/snippets/python-mode/defm index 5b2aee4..9eed76c 100644 --- a/snippets/python-mode/defm +++ b/snippets/python-mode/defm @@ -30,4 +30,4 @@ def ${1:name}(self, $2): (list "" "Arguments:" args (make-string 3 34)) indent))) } - $0 + $0 \ No newline at end of file diff --git a/snippets/python-mode/prop b/snippets/python-mode/prop index 107730a..3c1f889 100644 --- a/snippets/python-mode/prop +++ b/snippets/python-mode/prop @@ -12,4 +12,4 @@ def ${1:foo}(): return locals() $1 = property(**$1()) -$0 +$0 \ No newline at end of file diff --git a/snippets/python-mode/propg b/snippets/python-mode/propg index 63a9d98..a9ee1a1 100644 --- a/snippets/python-mode/propg +++ b/snippets/python-mode/propg @@ -6,4 +6,4 @@ def _get_${1:foo}(self): $1 = property(_get_$1) -$0 +$0 \ No newline at end of file diff --git a/snippets/python-mode/propsg b/snippets/python-mode/propsg index 73f1690..87ab4e3 100644 --- a/snippets/python-mode/propsg +++ b/snippets/python-mode/propsg @@ -9,4 +9,4 @@ def _get_$1(self): $1 = property(_get_$1, _set_$1) -$0 +$0 \ No newline at end of file diff --git a/snippets/ruby-mode/collections/all b/snippets/ruby-mode/collections/all index afb68a7..8bafece 100644 --- a/snippets/ruby-mode/collections/all +++ b/snippets/ruby-mode/collections/all @@ -1,3 +1,3 @@ #name : all? { |...| ... } # -- -all? { |${e}| $0 } +all? { |${e}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/any b/snippets/ruby-mode/collections/any index 2f4f9f1..084a2c7 100644 --- a/snippets/ruby-mode/collections/any +++ b/snippets/ruby-mode/collections/any @@ -1,3 +1,3 @@ #name : any? { |...| ... } # -- -any? { |${e}| $0 } +any? { |${e}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/classify b/snippets/ruby-mode/collections/classify index d1ad6f3..0fffa2d 100644 --- a/snippets/ruby-mode/collections/classify +++ b/snippets/ruby-mode/collections/classify @@ -1,3 +1,3 @@ #name : classify { |...| ... } # -- -classify { |${e}| $0 } +classify { |${e}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/collect b/snippets/ruby-mode/collections/collect index 37cd4b5..32ec608 100644 --- a/snippets/ruby-mode/collections/collect +++ b/snippets/ruby-mode/collections/collect @@ -1,3 +1,3 @@ #name : collect { |...| ... } # -- -collect { |${e}| $0 } +collect { |${e}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/deli b/snippets/ruby-mode/collections/deli index f51d9a6..a91fc7b 100644 --- a/snippets/ruby-mode/collections/deli +++ b/snippets/ruby-mode/collections/deli @@ -1,3 +1,3 @@ #name : delete_if { |...| ... } # -- -delete_if { |${e} $0 } +delete_if { |${e} $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/det b/snippets/ruby-mode/collections/det index 599898c..734d45c 100644 --- a/snippets/ruby-mode/collections/det +++ b/snippets/ruby-mode/collections/det @@ -1,3 +1,3 @@ #name : detect { |...| ... } # -- -detect { |${e}| $0 } +detect { |${e}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/ea b/snippets/ruby-mode/collections/ea index 40cb2cd..c779dd6 100644 --- a/snippets/ruby-mode/collections/ea +++ b/snippets/ruby-mode/collections/ea @@ -1,3 +1,3 @@ #name : each { |...| ... } # -- -each { |${e}| $0 } +each { |${e}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/eac b/snippets/ruby-mode/collections/eac index 7a7ccd4..2547b2d 100644 --- a/snippets/ruby-mode/collections/eac +++ b/snippets/ruby-mode/collections/eac @@ -1,3 +1,3 @@ #name : each_cons(...) { |...| ... } # -- -each_cons(${1:2}) { |${group}| $0 } +each_cons(${1:2}) { |${group}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/eai b/snippets/ruby-mode/collections/eai index b68cf69..4136dc0 100644 --- a/snippets/ruby-mode/collections/eai +++ b/snippets/ruby-mode/collections/eai @@ -1,3 +1,3 @@ #name : each_index { |i| ... } # -- -each_index { |${i}| $0 } +each_index { |${i}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/eav b/snippets/ruby-mode/collections/eav index 189ceff..4ff171a 100644 --- a/snippets/ruby-mode/collections/eav +++ b/snippets/ruby-mode/collections/eav @@ -1,3 +1,3 @@ #name : each_value { |val| ... } # -- -each_value { |${val}| $0 } +each_value { |${val}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/eawi b/snippets/ruby-mode/collections/eawi index 8718f7a..3d03998 100644 --- a/snippets/ruby-mode/collections/eawi +++ b/snippets/ruby-mode/collections/eawi @@ -1,3 +1,3 @@ #name : each_with_index { |e, i| ... } # -- -each_with_index { |${e}, ${i}| $0 } +each_with_index { |${e}, ${i}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/inject b/snippets/ruby-mode/collections/inject index eaa0f28..f6adb5c 100644 --- a/snippets/ruby-mode/collections/inject +++ b/snippets/ruby-mode/collections/inject @@ -1,3 +1,3 @@ #name : inject(...) { |...| ... } # -- -inject(${1:0}) { |${2:injection}, ${3:element}| $0 } +inject(${1:0}) { |${2:injection}, ${3:element}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/reject b/snippets/ruby-mode/collections/reject index 032b06d..9625fe9 100644 --- a/snippets/ruby-mode/collections/reject +++ b/snippets/ruby-mode/collections/reject @@ -1,3 +1,3 @@ #name : reject { |...| ... } # -- -reject { |${1:element}| $0 } +reject { |${1:element}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/select b/snippets/ruby-mode/collections/select index 5ea4ef8..b18a17d 100644 --- a/snippets/ruby-mode/collections/select +++ b/snippets/ruby-mode/collections/select @@ -1,3 +1,3 @@ #name : select { |...| ... } # -- -select { |${1:element}| $0 } +select { |${1:element}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/zip b/snippets/ruby-mode/collections/zip index 910de64..1da1086 100644 --- a/snippets/ruby-mode/collections/zip +++ b/snippets/ruby-mode/collections/zip @@ -1,3 +1,3 @@ #name : zip(...) { |...| ... } # -- -zip(${enums}) { |${row}| $0 } +zip(${enums}) { |${row}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/control structure/forin b/snippets/ruby-mode/control structure/forin index 197e09e..3d7e4d2 100644 --- a/snippets/ruby-mode/control structure/forin +++ b/snippets/ruby-mode/control structure/forin @@ -2,4 +2,4 @@ # -- for ${1:element} in ${2:collection} $0 -end +end \ No newline at end of file diff --git a/snippets/ruby-mode/control structure/if b/snippets/ruby-mode/control structure/if index c96069b..51bf24c 100644 --- a/snippets/ruby-mode/control structure/if +++ b/snippets/ruby-mode/control structure/if @@ -2,4 +2,4 @@ # -- if ${1:condition} $0 -end +end \ No newline at end of file diff --git a/snippets/ruby-mode/control structure/ife b/snippets/ruby-mode/control structure/ife index 959d77c..08fbb81 100644 --- a/snippets/ruby-mode/control structure/ife +++ b/snippets/ruby-mode/control structure/ife @@ -4,4 +4,4 @@ if ${1:condition} $2 else $3 -end +end \ No newline at end of file diff --git a/snippets/ruby-mode/control structure/tim b/snippets/ruby-mode/control structure/tim index 44023c0..3a132b3 100644 --- a/snippets/ruby-mode/control structure/tim +++ b/snippets/ruby-mode/control structure/tim @@ -1,3 +1,3 @@ #name : times { |n| ... } # -- -times { |${n}| $0 } +times { |${n}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/control structure/until b/snippets/ruby-mode/control structure/until index b3534a8..95f2dcb 100644 --- a/snippets/ruby-mode/control structure/until +++ b/snippets/ruby-mode/control structure/until @@ -2,4 +2,4 @@ # -- until ${condition} $0 -end +end \ No newline at end of file diff --git a/snippets/ruby-mode/control structure/upt b/snippets/ruby-mode/control structure/upt index 73c0046..b71539a 100644 --- a/snippets/ruby-mode/control structure/upt +++ b/snippets/ruby-mode/control structure/upt @@ -2,4 +2,4 @@ # -- upto(${n}) { |${i}| $0 -} +} \ No newline at end of file diff --git a/snippets/ruby-mode/control structure/when b/snippets/ruby-mode/control structure/when index 51f63a3..98e87b1 100644 --- a/snippets/ruby-mode/control structure/when +++ b/snippets/ruby-mode/control structure/when @@ -2,4 +2,4 @@ # -- when ${condition} $0 -end +end \ No newline at end of file diff --git a/snippets/ruby-mode/control structure/while b/snippets/ruby-mode/control structure/while index 00e114f..7e6dd55 100644 --- a/snippets/ruby-mode/control structure/while +++ b/snippets/ruby-mode/control structure/while @@ -2,4 +2,4 @@ # -- while ${condition} $0 -end +end \ No newline at end of file diff --git a/snippets/ruby-mode/definitions/Comp b/snippets/ruby-mode/definitions/Comp index 7afea97..9602d59 100644 --- a/snippets/ruby-mode/definitions/Comp +++ b/snippets/ruby-mode/definitions/Comp @@ -4,4 +4,4 @@ include Comparable def <=> other $0 -end +end \ No newline at end of file diff --git a/snippets/ruby-mode/definitions/am b/snippets/ruby-mode/definitions/am index 68ceff0..20594fd 100644 --- a/snippets/ruby-mode/definitions/am +++ b/snippets/ruby-mode/definitions/am @@ -1,3 +1,3 @@ #name : alias_method new, old # -- -alias_method :${new_name}, :${old_name} +alias_method :${new_name}, :${old_name} \ No newline at end of file diff --git a/snippets/ruby-mode/definitions/cla b/snippets/ruby-mode/definitions/cla index da71b10..c8f3524 100644 --- a/snippets/ruby-mode/definitions/cla +++ b/snippets/ruby-mode/definitions/cla @@ -2,4 +2,4 @@ # -- class << ${self} $0 -end +end \ No newline at end of file diff --git a/snippets/ruby-mode/definitions/cls b/snippets/ruby-mode/definitions/cls index 64ef27e..b3a4983 100644 --- a/snippets/ruby-mode/definitions/cls +++ b/snippets/ruby-mode/definitions/cls @@ -9,4 +9,4 @@ class ${1:`(let ((fn (capitalize (file-name-nondirectory ((string-match "_" fn) (replace-match "" nil nil fn)) (t fn)))`} $0 -end +end \ No newline at end of file diff --git a/snippets/ruby-mode/definitions/mm b/snippets/ruby-mode/definitions/mm index 7b348d7..5f1ebfc 100644 --- a/snippets/ruby-mode/definitions/mm +++ b/snippets/ruby-mode/definitions/mm @@ -2,4 +2,4 @@ # -- def method_missing(method, *args) $0 -end +end \ No newline at end of file diff --git a/snippets/ruby-mode/definitions/r b/snippets/ruby-mode/definitions/r index b933a13..b8d68d3 100644 --- a/snippets/ruby-mode/definitions/r +++ b/snippets/ruby-mode/definitions/r @@ -1,3 +1,3 @@ #name : attr_reader ... # -- -attr_reader : +attr_reader : \ No newline at end of file diff --git a/snippets/ruby-mode/definitions/rw b/snippets/ruby-mode/definitions/rw index 7153541..aadf605 100644 --- a/snippets/ruby-mode/definitions/rw +++ b/snippets/ruby-mode/definitions/rw @@ -1,3 +1,3 @@ #name : attr_accessor ... # -- -attr_accessor : +attr_accessor : \ No newline at end of file diff --git a/snippets/ruby-mode/definitions/w b/snippets/ruby-mode/definitions/w index cd6d473..d680f25 100644 --- a/snippets/ruby-mode/definitions/w +++ b/snippets/ruby-mode/definitions/w @@ -1,3 +1,3 @@ #name : attr_writer ... # -- -attr_writer : +attr_writer : \ No newline at end of file diff --git a/snippets/ruby-mode/general/# b/snippets/ruby-mode/general/# index b9e3f8a..7d21bb4 100644 --- a/snippets/ruby-mode/general/# +++ b/snippets/ruby-mode/general/# @@ -1,3 +1,3 @@ #name : # => # -- -# => +# => \ No newline at end of file diff --git a/snippets/ruby-mode/general/=b b/snippets/ruby-mode/general/=b index e396723..90b6e0a 100644 --- a/snippets/ruby-mode/general/=b +++ b/snippets/ruby-mode/general/=b @@ -2,4 +2,4 @@ # -- =begin rdoc $0 -=end +=end \ No newline at end of file diff --git a/snippets/ruby-mode/general/app b/snippets/ruby-mode/general/app index b151ccc..7bda767 100644 --- a/snippets/ruby-mode/general/app +++ b/snippets/ruby-mode/general/app @@ -2,4 +2,4 @@ # -- if __FILE__ == $PROGRAM_NAME $0 -end +end \ No newline at end of file diff --git a/snippets/ruby-mode/general/bm b/snippets/ruby-mode/general/bm index 44fb2b6..934ff85 100644 --- a/snippets/ruby-mode/general/bm +++ b/snippets/ruby-mode/general/bm @@ -2,4 +2,4 @@ # -- Benchmark.bmbm(${1:10}) do |x| $0 -end +end \ No newline at end of file diff --git a/snippets/ruby-mode/general/case b/snippets/ruby-mode/general/case index b919081..acc03ba 100644 --- a/snippets/ruby-mode/general/case +++ b/snippets/ruby-mode/general/case @@ -3,4 +3,4 @@ case ${1:object} when ${2:condition} $0 -end +end \ No newline at end of file diff --git a/snippets/ruby-mode/general/dee b/snippets/ruby-mode/general/dee index 496e187..ecec2f7 100644 --- a/snippets/ruby-mode/general/dee +++ b/snippets/ruby-mode/general/dee @@ -1,3 +1,3 @@ #name : deep_copy(...) # -- -Marshal.load(Marshal.dump($0)) +Marshal.load(Marshal.dump($0)) \ No newline at end of file diff --git a/snippets/ruby-mode/general/rb b/snippets/ruby-mode/general/rb index 9153653..c1cbfc3 100644 --- a/snippets/ruby-mode/general/rb +++ b/snippets/ruby-mode/general/rb @@ -1,3 +1,3 @@ #name : /usr/bin/ruby -wKU # -- -#!/usr/bin/ruby -wKU +#!/usr/bin/ruby -wKU \ No newline at end of file diff --git a/snippets/ruby-mode/general/req b/snippets/ruby-mode/general/req index 3ada7d5..2fbc3d4 100644 --- a/snippets/ruby-mode/general/req +++ b/snippets/ruby-mode/general/req @@ -1,3 +1,3 @@ #name : require "..." # -- -require "$0" +require "$0" \ No newline at end of file diff --git a/snippets/ruby-mode/general/rreq b/snippets/ruby-mode/general/rreq index ff80c71..84ac9df 100644 --- a/snippets/ruby-mode/general/rreq +++ b/snippets/ruby-mode/general/rreq @@ -1,3 +1,3 @@ #name : require File.join(File.dirname(__FILE__), ...) # -- -require File.join(File.dirname(__FILE__), $0) +require File.join(File.dirname(__FILE__), $0) \ No newline at end of file diff --git a/snippets/ruby-mode/general/y b/snippets/ruby-mode/general/y index a57fbde..cdec730 100644 --- a/snippets/ruby-mode/general/y +++ b/snippets/ruby-mode/general/y @@ -1,3 +1,3 @@ #name : :yields: arguments (rdoc) # -- -:yields: $0 +:yields: $0 \ No newline at end of file diff --git a/snippets/scala-mode/cons.nil b/snippets/scala-mode/cons.nil index c288f93..7747ea7 100644 --- a/snippets/scala-mode/cons.nil +++ b/snippets/scala-mode/cons.nil @@ -1,4 +1,4 @@ #Author : Jonas Bonèr #name : element1 :: Nil # -- -${1:element1} :: Nil $0 +${1:element1} :: Nil $0 \ No newline at end of file diff --git a/snippets/scala-mode/hset.new b/snippets/scala-mode/hset.new index d1be3ee..e4879fc 100644 --- a/snippets/scala-mode/hset.new +++ b/snippets/scala-mode/hset.new @@ -1,4 +1,4 @@ #Author : Jonas Bonèr #name : new HashSet[K] # -- -new HashSet[${1:key}] $0 +new HashSet[${1:key}] $0 \ No newline at end of file diff --git a/snippets/scala-mode/val.ret b/snippets/scala-mode/val.ret index 4bf4f10..a17ec10 100644 --- a/snippets/scala-mode/val.ret +++ b/snippets/scala-mode/val.ret @@ -1,4 +1,4 @@ #Author : Jonas Bonèr #name : val name: T = .. # -- -val ${1:name}: ${2:T} = ${3:obj} $0 +val ${1:name}: ${2:T} = ${3:obj} $0 \ No newline at end of file diff --git a/snippets/scala-mode/var b/snippets/scala-mode/var index 662d6c8..27fd7d9 100644 --- a/snippets/scala-mode/var +++ b/snippets/scala-mode/var @@ -1,4 +1,4 @@ #Author : Jonas Bonèr #name : var name = .. # -- -var ${1:name} = ${2:obj} $0 +var ${1:name} = ${2:obj} $0 \ No newline at end of file diff --git a/snippets/scala-mode/var.new b/snippets/scala-mode/var.new index d681c4a..272efc7 100644 --- a/snippets/scala-mode/var.new +++ b/snippets/scala-mode/var.new @@ -1,4 +1,4 @@ #Author : Jonas Bonèr #name : var name = new .. # -- -var ${1:name} = new ${2:obj} $0 +var ${1:name} = new ${2:obj} $0 \ No newline at end of file diff --git a/snippets/scala-mode/var.ret b/snippets/scala-mode/var.ret index 9d0ac3a..f4552ed 100644 --- a/snippets/scala-mode/var.ret +++ b/snippets/scala-mode/var.ret @@ -1,4 +1,4 @@ #Author : Jonas Bonèr #name : var name: T = .. # -- -var ${1:name}: ${2:T} = ${3:obj} $0 +var ${1:name}: ${2:T} = ${3:obj} $0 \ No newline at end of file diff --git a/snippets/sql-mode/column b/snippets/sql-mode/column index 90e4963..145360a 100644 --- a/snippets/sql-mode/column +++ b/snippets/sql-mode/column @@ -1,4 +1,4 @@ #contributor : Alejandro Espinoza Esparza #name : , ColumnName ColumnType NOT NULL... # -- - , ${1:Name} ${2:Type} ${3:NOT NULL} + , ${1:Name} ${2:Type} ${3:NOT NULL} \ No newline at end of file diff --git a/snippets/sql-mode/constraint b/snippets/sql-mode/constraint index 989e508..8377070 100644 --- a/snippets/sql-mode/constraint +++ b/snippets/sql-mode/constraint @@ -1,4 +1,4 @@ #contributor : Alejandro Espinoza Esparza #name : CONSTRAINT [..] PRIMARY KEY ... # -- -CONSTRAINT [${1:PK_Name}] PRIMARY KEY ${2:CLUSTERED} ([${3:ColumnName}]) +CONSTRAINT [${1:PK_Name}] PRIMARY KEY ${2:CLUSTERED} ([${3:ColumnName}]) \ No newline at end of file diff --git a/snippets/sql-mode/constraint.1 b/snippets/sql-mode/constraint.1 index 98d89f0..03d1e05 100644 --- a/snippets/sql-mode/constraint.1 +++ b/snippets/sql-mode/constraint.1 @@ -1,4 +1,4 @@ #contributor : Alejandro Espinoza Esparza #name : CONSTRAINT [..] FOREIGN KEY ... # -- -CONSTRAINT [${1:FK_Name}] FOREIGN KEY ${2:CLUSTERED} ([${3:ColumnName}]) +CONSTRAINT [${1:FK_Name}] FOREIGN KEY ${2:CLUSTERED} ([${3:ColumnName}]) \ No newline at end of file diff --git a/snippets/sql-mode/create b/snippets/sql-mode/create index a34624d..0e24c8d 100644 --- a/snippets/sql-mode/create +++ b/snippets/sql-mode/create @@ -7,4 +7,4 @@ CREATE TABLE [${1:dbo}].[${2:TableName}] $0 CONSTRAINT [${6:PK_}] PRIMARY KEY ${7:CLUSTERED} ([$3]) ) -GO +GO \ No newline at end of file diff --git a/snippets/sql-mode/create.1 b/snippets/sql-mode/create.1 index 1323daf..c8a06cc 100644 --- a/snippets/sql-mode/create.1 +++ b/snippets/sql-mode/create.1 @@ -9,4 +9,4 @@ AS BEGIN $0 END -GO +GO \ No newline at end of file diff --git a/snippets/sql-mode/references b/snippets/sql-mode/references index f2e4eab..b07fa7c 100644 --- a/snippets/sql-mode/references +++ b/snippets/sql-mode/references @@ -1,4 +1,4 @@ #contributor : Alejandro Espinoza Esparza #name : REFERENCES ... # -- -REFERENCES ${1:TableName}([${2:ColumnName}]) +REFERENCES ${1:TableName}([${2:ColumnName}]) \ No newline at end of file