unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: Ramesh Nedunchezian <rameshnedunchezian@outlook.com>
To: 47690@debbugs.gnu.org
Subject: bug#47690: 28.0.50; repeat-mode: Introduce a defmacro for chaining commands ???
Date: Sat, 10 Apr 2021 17:58:58 +0530	[thread overview]
Message-ID: <TY2PR0101MB3693E16111BF41316E7B23D2DA729@TY2PR0101MB3693.apcprd01.prod.exchangelabs.com> (raw)


Think of this email not as a bug, but as a note ... So, feel free to
close it after digesting the contents.

Context:

   When I look at the documentation of many of the MELPA packages,
   they have long long long lines i.e., one line per-paragraph.  It
   always bothers me when I run across such files.  I always hated
   reaching out to menu to fix the wrap.  Now that there is
   `repeat-mode', I can mindlessly keep pressing a key--F12 in the
   present case--to cycle through various wraps until I land in the
   one that is agreeable.

;; Pressing F12 repeatedly is equivalent to cycling through the
;; following 3 radio buttons
;;
;; 1. Wrap at Window Edge
;; 2. Truncate Long Lines
;; 3. Word Wrap (Visual Line Mode)
;;
;; in Menu->Options->Line Wrapping in this Buffer.
;;
;; This is implemented through the all new `repeat-mode' feature.
;;
;; Much like how `C-l' (= `recenter-top-bottom') cycles the cursor
;; though different positions, pressing F12 will take the buffer
;; through different wrap settings.
;;
;; This is what I see in *Messages* buffer when I press F12
;; repeatedly.
;;
;; Visual-Line mode enabled
;; Visual-Line mode enabled [Repeat with <f12>]
;; Truncate long lines enabled
;; Truncate long lines enabled [Repeat with <f12>]
;; Truncate long lines disabled
;; Truncate long lines disabled [Repeat with <f12>]
;; Visual-Line mode enabled
;; Visual-Line mode enabled [Repeat with <f12>]

;; Note: Instead of wrapping at window edge, a better idea would be to
;; use `visual-fill-mode'.  See
;; https://elpa.gnu.org/packages/visual-fill.html.

;; It may be a good idea (?) to provide a macro, say, `chaincmds',
;; which can generate the below code when invoked with
;;
;; (chain-cmds (kbd "<f12>")
;; 		'(menu-bar--visual-line-mode-enable
;; 		  menu-bar--toggle-truncate-long-lines 
;; 		  menu-bar--wrap-long-lines-window-edge))

(define-key global-map (kbd "<f12>") 'menu-bar--visual-line-mode-enable)
(let ((key [f12]))
  (defvar menu-bar--visual-line-mode-enable--repeat-map
    (let ((map (make-sparse-keymap))) map))
  (define-key menu-bar--visual-line-mode-enable--repeat-map key 'menu-bar--toggle-truncate-long-lines)

  (put 'menu-bar--visual-line-mode-enable 'repeat-map 'menu-bar--visual-line-mode-enable--repeat-map)
  

  (defvar menu-bar--toggle-truncate-long-lines--repeat-map
    (let ((map (make-sparse-keymap))) map))
  (define-key menu-bar--toggle-truncate-long-lines--repeat-map key 'menu-bar--wrap-long-lines-window-edge)

  (put 'menu-bar--toggle-truncate-long-lines 'repeat-map 'menu-bar--toggle-truncate-long-lines--repeat-map)

  (defvar menu-bar--wrap-long-lines-window-edge--repeat-map
    (let ((map (make-sparse-keymap))) map))
  (define-key menu-bar--wrap-long-lines-window-edge--repeat-map key 'menu-bar--visual-line-mode-enable)

  (put 'menu-bar--wrap-long-lines-window-edge 'repeat-map 'menu-bar--wrap-long-lines-window-edge--repeat-map))


--------------------------------


In GNU Emacs 28.0.50 (build 5, x86_64-pc-linux-gnu, GTK+ Version 3.24.24, cairo version 1.16.0)
 of 2021-04-10 built on debian
Repository revision: 0db2126d7176b0bd1b13d4b0d1cd958c8cf55714
Repository branch: master
Windowing system distributor 'The X.Org Foundation', version 11.0.12010000
System Description: Debian GNU/Linux bullseye/sid

Configured using:
 'configure -with-imagemagick --with-json --with-xwidgets'

Configured features:
ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GPM GSETTINGS HARFBUZZ
IMAGEMAGICK JPEG JSON LCMS2 LIBOTF LIBSELINUX LIBSYSTEMD LIBXML2
M17N_FLT MODULES NOTIFY INOTIFY PDUMPER PNG RSVG SOUND THREADS TIFF
TOOLKIT_SCROLL_BARS X11 XDBE XIM XPM XWIDGETS GTK3 ZLIB





             reply	other threads:[~2021-04-10 12:28 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-10 12:28 Ramesh Nedunchezian [this message]
2021-04-12 16:13 ` bug#47690: 28.0.50; repeat-mode: Introduce a defmacro for chaining commands ??? Juri Linkov

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

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=TY2PR0101MB3693E16111BF41316E7B23D2DA729@TY2PR0101MB3693.apcprd01.prod.exchangelabs.com \
    --to=rameshnedunchezian@outlook.com \
    --cc=47690@debbugs.gnu.org \
    /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 public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).