Any such function or elisp script? I want the equivalent function as vi" sequence in vim.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Try the key sequence C-M-u SPC (i.e., while holding the Control and Meta keys, press u and Space in sequence), which executes the commands Edit:I made a mistake:
(defun backward-up-sexp (arg)
(interactive "p")
(let ((ppss (syntax-ppss)))
(cond ((elt ppss 3)
(goto-char (elt ppss 8))
(backward-up-sexp (1- arg)))
((backward-up-list arg)))))
(global-set-key [remap backward-up-list] 'backward-up-sexp)
|
|||||||||
|
|
Here is another version which works better for me: |
|||
|
|