-
-
Save hghwng/ccaefd42e1a218778a2d1a29399e86b1 to your computer and use it in GitHub Desktop.
中文邮件的 yasnippet 模板
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: snippet -*- | |
#name : mail | |
#key : mail | |
#author : Hugh Wang | |
# -- | |
${1:尊敬的 XXX} | |
您好。 | |
$0 | |
` | |
(let | |
((month (nth 4 (decode-time (current-time))))) | |
(let | |
((season-index (/ (% (+ month 10) 12) 4))) | |
(nth season-index (quote ("春安" "夏安" "秋安" "冬安"))) | |
) | |
) | |
` | |
Hugh Wang | |
`(format-time-string "%Y-%m-%d")` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment