From: Michal Nazarewicz <mpn@google.com>
To: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: Felix Lee <felix8a@gmail.com>, emacs-devel@gnu.org
Subject: Re: PATCH: num3-mode for highlighting groups of digits in long numbers
Date: Wed, 26 Sep 2012 14:27:05 +0200 [thread overview]
Message-ID: <xa1tbogtt1eu.fsf@mina86.com> (raw)
In-Reply-To: <jwvsja561ho.fsf-monnier+emacs@gnu.org>
[-- Attachment #1: Type: text/plain, Size: 7231 bytes --]
On Wed, Sep 26 2012, Stefan Monnier wrote:
> For single-file packages, you just need to file to be structured
> correctly (try C-u M-x checkdoc-current-buffer) and have "Version:"
> and "Maintainer:" headers at the beginning.
Attached below.
checkdoc-current-buffer gives me two errors but I'm not sure how to fix
those since in given instances num3-mode refers to the mode.
num3.el:102: Disambiguate num3-mode by preceding w/ function,command,variable,option or symbol.
num3.el:111: Disambiguate num3-mode by preceding w/ function,command,variable,option or symbol.
> Also the packages need to have their copyright paperwork in order, just
> like code included with Emacs, so we can easily move code between
> the two.
Everything should be in order on that part. Google holds the Copyright,
but it has the proper paperwork done (I have contributed previously).
---------- >% ----------------------------------------------------------
;;; num3-mode.el --- highlight groups of digits in long numbers -*- lexical-binding: t -*-
;; Copyright (C) 2012 Free Software Foundation, Inc.
;; Author: Felix Lee <felix8a@gmail.com>, Michal Nazarewicz <mina86@mina86.com>
;; Maintainer: Michal Nazarewicz <mina86@mina86.com>
;; Version: 1.0
;; Keywoards: faces, minor-mode
;; 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:
;; Num3 is a minor mode that makes long numbers more readable by
;; highlighting groups of 3 (customisable) decimal digits or 4 hex
;; digits when font-lock is on. Highlighting alternates between two
;; faces that can be customised.
;;; Usage:
;; M-x num3-mode toggle for current buffer.
;; M-x global-num3-mode toggle for all buffers.
;;
;; Or add the following to your ~/.emacs file:
;; (load "path/to/num3")
;; (global-num3-mode)
;;; Code:
(defgroup num3 nil
"Num3 is a minor mode that makes long numbers more readable by
highlighting groups of decimal digits or 4 hex digits when
font-lock is on."
:group 'text)
(defcustom num3-group-size 3
"Number of digits to group in decimal numbers.")
(defcustom num3-threshold 5
"Number must be at least that long to start highlighting.")
(defface num3-face-odd
'((t))
"Face to add for odd groups of digits."
:group 'num3)
(defface num3-face-even
'((t :underline t :weight bold :background "#eeeeee"))
"Face to add for even groups of digits.
The default face uses redundant signaling, because this is in
addition to any other font-lock highlighting."
:group 'num3)
;;; Implementation:
(require 'font-lock)
;;;###autoload
(define-minor-mode num3-mode
"Toggle num3 minor mode in the current buffer.
Num3 minor mode makes long numbers more readable by highlighting
groups of digits when font-lock mode is on.
If a number is longer than `num3-threshold', the mode will split
it into a group of `num3-group-size' (if number is decimal) or
4 (if number is hexadecimal) digits. Hexadecimal number is
detected as one starting with 0x, 0X or #.
With decimal numbers, fractions are recognised as well and
grouped from the beginning rathar then from end. For instance,
with group size of 3, a number \"12345.12345\" will be split into
groups as follows: \"12|345.123|45\". Fractions without integer
part are also recognised, eg. \".12345\".
The groups are highlighted alternately using `num3-face-odd' and
`num3-face-even' faces. `num3-face-even' face (which is empty by
default) is the one used for the group closest to the decimal point."
nil " num3" nil
(if num3-mode
(unless (assoc '-num3-matcher font-lock-keywords)
(font-lock-add-keywords nil '(-num3-matcher) 'append))
(font-lock-remove-keywords nil '(-num3-matcher)))
(when font-lock-mode
(font-lock-fontify-buffer)))
;;;###autoload
(define-globalized-minor-mode global-num3-mode num3-mode turn-on-num3-mode)
;;;###autoload
(defun turn-on-num3-mode ()
"Turn `num3-mode' on if it's not enabled."
(unless num3-mode (num3-mode t)))
(defconst -num3-number-re
(concat "\\(?:0[xX]\\|#\\)\\([0-9a-fA-F]+\\)" ; 1 = hexadecimal
"\\|\\([0-9]+\\)" ; 2 = decimal
"\\|\\.\\([0-9]+\\)")) ; 3 = fraction
(defun -num3-matcher (lim)
"Function used as a font-lock-keywoard handler used in `num3-mode'.
Performs fontification of numbers from point to LIM."
(save-excursion
(while (re-search-forward -num3-number-re lim t)
(-num3-int (match-beginning 1) (match-end 1) 4)
(-num3-int (match-beginning 2) (match-end 2) num3-group-size)
(-num3-frac (match-beginning 3) (match-end 3) num3-group-size)))
nil)
(defun -num3-int (lo hi n)
"Highlight groups of digits in a long number.
LO and HI arguments specify the range where the number is
located. If the length of that region exceeds `num3-threshold',
the function will split it into groups of N digits and fontify
tham alternately using `num3-face-odd' and `num3-face-even'
faces. Grouping is done from the end, eg. (12)(345)."
(when (and lo (>= (- hi lo) num3-threshold))
(let (even)
(while (< lo hi)
(-num3-put even (max lo (- hi n)) hi)
(setq hi (- hi n) even (not even))))))
(defun -num3-frac (lo hi n)
"Highlight groups of digits in a long number.
LO and HI arguments specify the range where the number is
located. If the length of that region exceeds `num3-threshold',
the function will split it into groups of N digits and fontify
tham alternately using `num3-face-odd' and `num3-face-even'
faces. Grouping is done from the beginning, eg. (123)(45)."
(when (and lo (>= (- hi lo) num3-threshold))
(let (even)
(while (< lo hi)
(-num3-put even lo (min hi (+ lo n)))
(setq lo (+ lo n) even (not even))))))
(defun -num3-put (even lo hi)
"Add font lock text property to highlight a single group of digit.
Use `num3-face-odd' if EVEN is nil and `num3-face-even' if EVEN is
non-nil. The region the face is set to is from LO to HI."
(font-lock-append-text-property lo hi 'face
(if even 'num3-face-even 'num3-face-odd)))
(provide 'num3)
;;; num3.el ends here
---------- >% ----------------------------------------------------------
--
Best regards, _ _
.o. | Liege of Serenely Enlightened Majesty of o' \,=./ `o
..o | Computer Science, Michał “mina86” Nazarewicz (o o)
ooo +----<email/xmpp: mpn@google.com>--------------ooO--(_)--Ooo--
[-- Attachment #2.1: Type: text/plain, Size: 0 bytes --]
[-- Attachment #2.2: Type: application/pgp-signature, Size: 835 bytes --]
next prev parent reply other threads:[~2012-09-26 12:27 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-06 16:21 PATCH: num3-mode for highlighting groups of digits in long numbers Michal Nazarewicz
2012-09-06 17:23 ` Lars Ingebrigtsen
2012-09-06 21:22 ` Stefan Monnier
2012-09-25 20:40 ` Michal Nazarewicz
2012-09-26 1:07 ` Stefan Monnier
2012-09-26 12:27 ` Michal Nazarewicz [this message]
2012-09-26 12:56 ` Noah Lavine
2012-09-26 13:06 ` Michal Nazarewicz
2012-09-26 14:58 ` Lennart Borgman
2012-09-26 20:02 ` Stefan Monnier
2012-09-26 20:01 ` Stefan Monnier
2012-09-26 21:33 ` Michal Nazarewicz
2012-09-26 21:44 ` Stefan Monnier
2012-09-26 23:33 ` Michal Nazarewicz
2012-09-26 21:36 ` turn-on/off-*MODE* (was: Re: PATCH: num3-mode for highlighting groups of digits in long numbers) chad
2012-09-26 21:47 ` turn-on/off-*MODE* Stefan Monnier
2012-09-26 21:59 ` PATCH: num3-mode for highlighting groups of digits in long numbers felix
2012-09-06 23:18 ` Jambunathan K
2012-09-06 23:41 ` felix
2012-09-07 1:14 ` Michal Nazarewicz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=xa1tbogtt1eu.fsf@mina86.com \
--to=mpn@google.com \
--cc=emacs-devel@gnu.org \
--cc=felix8a@gmail.com \
--cc=monnier@iro.umontreal.ca \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.