emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/epoch-view 2777c30 1/4: Give every package its own dire


From: Stefan Monnier
Subject: [elpa] externals/epoch-view 2777c30 1/4: Give every package its own directory in packages/
Date: Tue, 1 Dec 2020 15:52:17 -0500 (EST)

branch: externals/epoch-view
commit 2777c30e5f47c8923844e20bbff95a823584f514
Author: Chong Yidong <cyd@stupidchicken.com>
Commit: Chong Yidong <cyd@stupidchicken.com>

    Give every package its own directory in packages/
    including single-file packages.
---
 epoch-view.el | 99 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 99 insertions(+)

diff --git a/epoch-view.el b/epoch-view.el
new file mode 100644
index 0000000..46ed67c
--- /dev/null
+++ b/epoch-view.el
@@ -0,0 +1,99 @@
+;;; epoch-view.el --- minor mode to visualize epoch timestamps
+
+;; Copyright (C) 2010
+;;   Free Software Foundation, Inc.
+
+;; Author: Ted Zlatanov <tzz@lifelogs.com>
+;; Keywords: data, timestamp, epoch, unix
+;; Version: 0.0.1
+
+;; This file is part of GNU Emacs.
+
+;; GNU Emacs is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; GNU Emacs is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; Use like any other minor mode.  You'll see tooltips with dates
+;; instead of Unix epoch times.  This mode turns on font-lock and
+;; leaves it on forever.  You may or may not like that.
+
+;; TODO: instead of letting font-lock-mode manage the `display'
+;; property, manage it ourselves so when multiple modes specify
+;; `display' it won't get wiped out when this mode doesn't need it
+;; anymore.
+
+;;; Code:
+
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;;; User Variables:
+
+(defcustom epoch-view-time-format "%F %T"
+  "Format for time view.  Same as `format-time-string'."
+  :type '(choice :tag "Time format"
+                 (string :tag "Choose your own `format-time-string' format")
+                 (const :tag "YYYY-MM-DD HH:MM:SS" "%F %T"))
+  :group 'epoch-view)
+
+(defvar epoch-view-font-lock-keywords
+  '(("\\<[0-9]\\{8,11\\}\\>"
+     (0 (epoch-view-render))))
+  "Font-lock keywords of epoch timestamps.")
+
+(defun epoch-view-render ()
+  "Render a epoch match."
+  (let ((text (match-string-no-properties 0)))
+    `(face font-lock-warning-face
+           display ,(epoch-view--render text))))
+
+(defun epoch-view--render-time (text)
+  "Render the time portion of an epoch match from TEXT."
+  (format-time-string
+   epoch-view-time-format
+   (seconds-to-time (car (read-from-string (concat text ".0"))))))
+
+(defun epoch-view--render (text)
+  "Render a epoch match from a number in TEXT, ending with TEXT."
+  (format "[%s] %s" (epoch-view--render-time text) text))
+
+(defun epoch-view-turn-on ()
+  "Turn on epoch-view-mode."
+  (let ((props (make-local-variable 'font-lock-extra-managed-props)))
+    (add-to-list props 'display))
+
+  (font-lock-add-keywords nil epoch-view-font-lock-keywords))
+
+(defun epoch-view-turn-off ()
+  "Turn off epoch-view-mode."
+  (font-lock-remove-keywords
+   nil
+   `(,@epoch-view-font-lock-keywords)))
+
+;;;###autoload
+(define-minor-mode
+  epoch-view-mode
+  "Visualize epoch (Unix) timestamps."
+  :lighter " EpochVw"
+  (progn
+    (if epoch-view-mode
+        (epoch-view-turn-on)
+      (epoch-view-turn-off))
+    ;; Turn on font lock
+    (font-lock-mode 1)))
+
+(provide 'epoch-view)
+
+(run-hooks 'epoch-view-load-hook)
+
+;;; epoch-view.el ends here



reply via email to

[Prev in Thread] Current Thread [Next in Thread]