diff options
| author | Simeon Simeonov | 2017-03-28 09:35:03 +0200 |
|---|---|---|
| committer | Simeon Simeonov | 2017-03-28 09:35:03 +0200 |
| commit | 15c068e1cff03f81f63b85159437e162660c0760 (patch) | |
| tree | 938b12468601084423e494272a859bb47110023c /.emacs.d/snippets | |
| parent | 380ef3e4b3907c5f4a203947f38bebe4c0498c4c (diff) | |
Update snippets and yasnippet
Diffstat (limited to '.emacs.d/snippets')
| -rw-r--r-- | .emacs.d/snippets/prog-mode/comment | 2 | ||||
| -rw-r--r-- | .emacs.d/snippets/prog-mode/commentline | 14 |
2 files changed, 7 insertions, 9 deletions
diff --git a/.emacs.d/snippets/prog-mode/comment b/.emacs.d/snippets/prog-mode/comment index edd53e9..7ae2b8c 100644 --- a/.emacs.d/snippets/prog-mode/comment +++ b/.emacs.d/snippets/prog-mode/comment | |||
| @@ -3,4 +3,4 @@ | |||
| 3 | # name: comment | 3 | # name: comment |
| 4 | # key: co | 4 | # key: co |
| 5 | # -- | 5 | # -- |
| 6 | ${1:$(yas-trimmed-comment-start)} ${1:comment}${1:$(unless (eq (length comment-end) 0) (concat " " (yas-trimmed-comment-end)))}$0 \ No newline at end of file | 6 | `(yas-trimmed-comment-start)` ${1:comment}`(unless (eq (length comment-end) 0) (concat " " (yas-trimmed-comment-end)))`$0 \ No newline at end of file |
diff --git a/.emacs.d/snippets/prog-mode/commentline b/.emacs.d/snippets/prog-mode/commentline index 0b0edff..400a7bf 100644 --- a/.emacs.d/snippets/prog-mode/commentline +++ b/.emacs.d/snippets/prog-mode/commentline | |||
| @@ -3,11 +3,9 @@ | |||
| 3 | # name: commentline | 3 | # name: commentline |
| 4 | # key: col | 4 | # key: col |
| 5 | # -- | 5 | # -- |
| 6 | ${1:$(yas-trimmed-comment-start)} ${1:comment} ${1:$(let* ((str "") | 6 | `(yas-trimmed-comment-start)` ${1:comment} ${1:$(let* ((start (yas-trimmed-comment-start)) |
| 7 | (curr (current-column)) | 7 | (lastcom (aref start (1- (length start)))) |
| 8 | (start (yas-trimmed-comment-start)) | 8 | (end (yas-trimmed-comment-end)) |
| 9 | (lastcom (substring start -1)) | 9 | (endpadlen (- 79 (+ (current-column) (length end))))) |
| 10 | (end (yas-trimmed-comment-end))) | 10 | (concat (make-string (max endpadlen 0) lastcom) |
| 11 | (while (< (length str) (- 79 (+ curr (length end)))) | 11 | end))}$0 \ No newline at end of file |
| 12 | (setq str (concat str lastcom))) | ||
| 13 | (concat str end))}$0 \ No newline at end of file | ||
