diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-08-16 20:28:59 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-08-16 20:28:59 -0400 |
commit | 1f66bf201dded51f6a0d598a8e3df67887ebe523 (patch) | |
tree | 75d5d69595832458303d54b8628275057d5c906d /snippets | |
parent | 6757fbe388793442218be688d35cdc3a07b1d01f (diff) | |
download | emacs.d-1f66bf201dded51f6a0d598a8e3df67887ebe523.tar.gz |
yas: Adjust for comment-start spacing
Diffstat (limited to 'snippets')
-rw-r--r-- | snippets/text-mode/cdate | 2 | ||||
-rw-r--r-- | snippets/text-mode/km-todo | 2 | ||||
-rw-r--r-- | snippets/text-mode/todo | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/snippets/text-mode/cdate b/snippets/text-mode/cdate index 84cd077..dc47845 100644 --- a/snippets/text-mode/cdate +++ b/snippets/text-mode/cdate @@ -1,4 +1,4 @@ # -*- mode: snippet -*- # key: cdate # -- -`(yas-with-comment (concat " " (format-time-string "%Y-%m-%d")))`
\ No newline at end of file +`(km/yas-with-comment (format-time-string "%Y-%m-%d"))`
\ No newline at end of file diff --git a/snippets/text-mode/km-todo b/snippets/text-mode/km-todo index 13bde86..32cdcc6 100644 --- a/snippets/text-mode/km-todo +++ b/snippets/text-mode/km-todo @@ -2,4 +2,4 @@ # key: kt # Copied over from text-mode/TODO. # -- -`(yas-with-comment " kTODO: ")`
\ No newline at end of file +`(km/yas-with-comment "kTODO: ")`
\ No newline at end of file diff --git a/snippets/text-mode/todo b/snippets/text-mode/todo index 1b02916..331b154 100644 --- a/snippets/text-mode/todo +++ b/snippets/text-mode/todo @@ -2,4 +2,4 @@ # name: todo # key: ct # -- -`(yas-with-comment "TODO: ")`
\ No newline at end of file +`(km/yas-with-comment "TODO: ")`
\ No newline at end of file |