From: "Juan Manuel Macías" <maciaschain@posteo.net>
To: orgmode <emacs-orgmode@gnu.org>
Subject: [tip] Org speed commands improved
Date: Tue, 26 Apr 2022 14:00:31 +0000 [thread overview]
Message-ID: <87pml4lzb4.fsf@posteo.net> (raw)
Hi all,
Org speed commands are a major productivity boost and I love them.
Lately it has occurred to me to make some modifications with the
following configuration, which I share here in case someone wants to try
it. The idea is that Org speed commands are activated anywhere in the
header (not just at the beginning of the line) *or* when point is at the
very beginning of the buffer. This, in my opinion, improves the
navigation speed:
#+begin_src emacs-lisp
(setq org-use-speed-commands
(lambda () (or (eq (point) 1)
(org-in-regexp "^\\*+\s+.+"))))
#+end_src
This also serves as a kind of write protection for the header titles. To
be able to edit them, we can use this function:
#+begin_src emacs-lisp
(defun my-org-toggle-speed-commands ()
(interactive)
(if org-use-speed-commands
(progn (setq org-use-speed-commands nil)
(message "speed-commands off"))
(setq org-use-speed-commands
(lambda () (or (eq (point) 1)
(org-in-regexp "^\\*+\s+.+"))))
(message "speed-commands on")))
(with-eval-after-load 'org
(define-key org-mode-map (kbd "M-i") 'my-org-toggle-speed-commands))
#+end_src
Best regards,
Juan Manuel
next reply other threads:[~2022-04-26 14:01 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-26 14:00 Juan Manuel Macías [this message]
2022-04-27 4:20 ` [tip] Org speed commands improved Ihor Radchenko
2022-04-27 5:37 ` Tim Cross
2022-04-27 7:08 ` Juan Manuel Macías
2022-05-04 22:12 ` TRS-80
2022-04-27 16:30 ` Daniel Fleischer
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.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87pml4lzb4.fsf@posteo.net \
--to=maciaschain@posteo.net \
--cc=emacs-orgmode@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/org-mode.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).