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
-
+