From: Marc Coquand <marc@mccd.space>
To: help-gnu-emacs@gnu.org
Subject: Auto add register when leaving buffer?
Date: Tue, 05 Nov 2024 11:29:55 +0200 [thread overview]
Message-ID: <874j4m2fl8.fsf@mccd.space> (raw)
Heya,
In vim I used to have a nifty setup where I would auto register marks
when leaving a buffer. For example, I'd auto assign 'c to be last open
css file, 'h to be last open html file etc.
I'm trying to setup something similar in emacs, and tried the following
hook:
(use-package sgml-mode
:hook
(css-mode . (lambda ()
(interactive)
(add-hook 'window-buffer-change-functions
(lambda ()
(interactive)
(point-to-register ?c)) 0 't))))
I think I'm on the right track, but it seems to not be working. The
following function
(defun me/point-to-c ()
(interactive)
(point-to-register ?c))
Seems to work, but the hook that should trigger on buffer change does
not work.
What am I missing?
-- mccd
next reply other threads:[~2024-11-05 9:29 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-05 9:29 Marc Coquand [this message]
2024-11-05 11:43 ` Auto add register when leaving buffer? Michael Heerdegen via Users list for the GNU Emacs text editor
2024-11-08 12:49 ` Jean Louis
2024-11-09 7:04 ` Marc Coquand
2024-11-10 13:04 ` Jean Louis
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=874j4m2fl8.fsf@mccd.space \
--to=marc@mccd.space \
--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.
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).