Created
June 6, 2009 16:09
-
-
Save eiel/124894 to your computer and use it in GitHub Desktop.
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
(custom-set-variables | |
'(org-display-custom-times t) | |
'(org-time-stamp-custom-formats (cons (concat "<%Y/%m/%d " (substring (current-time-string) 0 3) ">") | |
(concat "<%Y/%m/%d " (substring (current-time-string) 0 3) " %H:%M>"))) | |
) | |
;;; 訂正版 | |
(custom-set-variables | |
'(org-time-stamp-custom-formats (quote ("<%Y/%m/%d %a>" . "<%Y/%m/%d %a %H:%M>"))) | |
) | |
;;; とりあえず、動くものにしとく。 | |
(defadvice org-toggle-time-stamp-overlays (around temp-change-around-english-weekday-name) | |
(set-locale-environment "C") | |
ad-do-it | |
(set-locale-environment)) | |
(ad-activate 'org-toggle-time-stamp-overlays) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment