diff options
author | Kyle Meyer <kyle@kyleam.com> | 2017-07-27 20:41:12 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2017-07-27 20:41:12 -0400 |
commit | 782ffa72bf459c10c2a74004263a4d2b49b7905f (patch) | |
tree | a1686c457f0b65cd3aa282182aa91134a44e56e0 /snippets/text-mode | |
parent | 91ea3394df49fbde61db951b525de2fc10ef583d (diff) | |
download | emacs.d-782ffa72bf459c10c2a74004263a4d2b49b7905f.tar.gz |
snippets: Remove redundant (or nearly redundant) names
The name field defaults to the file name, so don't bother explicitly
specifying a name field that matches or nearly matches the file name.
Diffstat (limited to 'snippets/text-mode')
-rw-r--r-- | snippets/text-mode/commented-anchor | 1 | ||||
-rw-r--r-- | snippets/text-mode/initials-comment | 1 | ||||
-rw-r--r-- | snippets/text-mode/priority-todo | 1 | ||||
-rw-r--r-- | snippets/text-mode/random-num | 1 | ||||
-rw-r--r-- | snippets/text-mode/todo | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/snippets/text-mode/commented-anchor b/snippets/text-mode/commented-anchor index d8074aa..0d2c357 100644 --- a/snippets/text-mode/commented-anchor +++ b/snippets/text-mode/commented-anchor @@ -1,5 +1,4 @@ # -*- mode: snippet -*- -# name: commented anchor # key: ar # -- `(km/yas-with-comment "anchor:")`
\ No newline at end of file diff --git a/snippets/text-mode/initials-comment b/snippets/text-mode/initials-comment index 1d1dde4..94eb977 100644 --- a/snippets/text-mode/initials-comment +++ b/snippets/text-mode/initials-comment @@ -1,5 +1,4 @@ # -*- mode: snippet -*- -# name: initials comment # key: ic # -- `(km/yas-with-comment "KM: ")`
\ No newline at end of file diff --git a/snippets/text-mode/priority-todo b/snippets/text-mode/priority-todo index 2e5c50d..f31167b 100644 --- a/snippets/text-mode/priority-todo +++ b/snippets/text-mode/priority-todo @@ -1,5 +1,4 @@ # -*- mode: snippet -*- -# name: priority-todo # key: cat # -- `(km/yas-with-comment "[#A] TODO: ")`
\ No newline at end of file diff --git a/snippets/text-mode/random-num b/snippets/text-mode/random-num index 49aa627..c83d8ac 100644 --- a/snippets/text-mode/random-num +++ b/snippets/text-mode/random-num @@ -1,5 +1,4 @@ # -*- mode: snippet -*- -# name: random number # key: rnum # condition: 'force-in-comment # -- diff --git a/snippets/text-mode/todo b/snippets/text-mode/todo index 331b154..be4408a 100644 --- a/snippets/text-mode/todo +++ b/snippets/text-mode/todo @@ -1,5 +1,4 @@ # -*- mode: snippet -*- -# name: todo # key: ct # -- `(km/yas-with-comment "TODO: ")`
\ No newline at end of file |