I would like to select the whole function by going to VISUAL mode and using $ to go to the last character and then going to the matching bracket with %. Doing this in NORMAL mode works fine, but when in VISUAL, it doesn’t. How can I fix this? Or, what should I check to fix this?

You are viewing a single thread.
View all comments
1 point

You can select in one go in GNU Emacs. You can bind this to some shortcut.

(defun select-func-at-point ()
  (interactive)
  (let (bounds pos1 pos2 mything)
    (setf bounds (bounds-of-thing-at-point 'defun))
    (setf pos1 (car bounds))
    (setf pos2 (cdr bounds))
    (set-mark pos1)
    (goto-char pos2)))
permalink
report
reply

Emacs

!emacs@communick.news

Create post

A community for the timeless and infinitely powerful editor. Want to see what Emacs is capable of?!

Get Emacs

  • Windows
  • Mac OS X
  • GNU/Linux and BSD (Just get it from your distribution’s package manager)

Rules

  1. Posts should be emacs related
  2. Be kind please
  3. Yes, we already know: Google results for “emacs” and “vi” link to each other. We good.

Emacs Resources

Emacs Tutorials

Useful Emacs configuration files and distributions

Quick pain-saver tip

Community stats

  • 18

    Monthly active users

  • 562

    Posts

  • 2.4K

    Comments