Guest User

Untitled

a guest
Jan 12th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. (defun allow-toggle-timestamp-p ()
  2. (cond
  3. ((eq last-command 'org-time-stamp) t)
  4. ((eq last-command 'org-toggle-timestamp-type) t)
  5. nil))
  6.  
  7. (define-key org-mode-map "!"
  8. `(menu-item "" org-toggle-timestamp-type
  9. :filter ,(lambda (cmd) (if (allow-toggle-timestamp-p) cmd))))
Add Comment
Please, Sign In to add comment