all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: jai-bholeki <jai-bholeki@protonmail.com>
To: jai-bholeki <jai-bholeki@protonmail.com>
Cc: "help-gnu-emacs@gnu.org" <help-gnu-emacs@gnu.org>
Subject: Re: Toggle between read-only-mode
Date: Fri, 06 Nov 2020 12:23:14 +0000	[thread overview]
Message-ID: <I13u7y-Fi_SXDN0E6gc0RroS2fFgjrJWcd-GSkNhOPHdqDdTw9ce6vzDWfrLBMI0knJaDrLL7ni0BErkq_xjUc8b4Hiq6YO2hzHB8wHMc3k=@protonmail.com> (raw)
In-Reply-To: <LBELw2NhFvPtAB7sMx2HmDJ0PvOP4-kBXeFlwkN4BVllz7KFy_z5hjjVjnUSz0e3hXqNcRDyism5SaxRRxpAQLSHTxqutREw-yXRp8r1Gv4=@protonmail.com>

Have done as follows, and it works

(defun parenhl-cycle ()
   "Toggles the highlighting of parenthetical regions."
   (interactive)
   ;; Use the property 'state' to cycle between parenthetical styles
   (if (get 'paren-expr 'state)
      (progn
        (setq show-paren-style 'parenthesis)
        (put 'paren-expr  'state nil))
      (progn
        (setq show-paren-style 'expression)
        (put 'paren-expr  'state t))))

(global-set-key (kbd "H-z") 'parenhl-cycle)





‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Friday, 6 November 2020 11:53, jai-bholeki via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org> wrote:

> Have made two functions to set paren-style-parenthesis.
>
> Now I am trying to make a keybinding that toggles through the two settings.
> Have checked around and have not found examples on how it can be done.
>
> > (defun parenhl-paren ()
> > "paren-style-parenthesis sets highlighting for parenthetical marks"
> > (interactive)
> > (setq show-paren-style 'parenthesis)
> > )
> > (defun parenhl-expr ()
> > "paren-style-parenthesis sets highlighting for parenthetical marks"
> > (interactive)
> > (setq show-paren-style 'expression)
> > )
>
> Sent withProtonMail Secure Email.





      reply	other threads:[~2020-11-06 12:23 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-06 10:53 Toggle between read-only-mode jai-bholeki via Users list for the GNU Emacs text editor
2020-11-06 12:23 ` jai-bholeki [this message]

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='I13u7y-Fi_SXDN0E6gc0RroS2fFgjrJWcd-GSkNhOPHdqDdTw9ce6vzDWfrLBMI0knJaDrLL7ni0BErkq_xjUc8b4Hiq6YO2hzHB8wHMc3k=@protonmail.com' \
    --to=jai-bholeki@protonmail.com \
    --cc=help-gnu-emacs@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 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.