Duplicating a line is extremely useful when editing text and specially when programming. There is no native command in Emacs to achieve that but it's easy to add one.
It's easy to get addicted to the use of this new command but a problem remains when programming in Lisp with paredit.el: duplicating sometimes lead to invalid s-expressions being inserted.
I decided to give it a try and made an implementation that duplicate the s-expressions after the point (cursor). For instance in Clojure if you are editing this code:
(ns myns (:use [clojure.string :only [escape]]))You can duplicate the first vector by placing the cursor on the square bracket, invoking the command with one keystroke and then easily obtain this code:
(ns myns (:use [clojure.string :only [escape]] [clojure.set :only [union]]))Here is the code to duplicate the line; to my knowledge there is no such command in paredit.el:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun paredit-duplicate-after-point | |
() | |
"Duplicates the content of the line that is after the point." | |
(interactive) | |
;; skips to the next sexp | |
(while (looking-at " ") | |
(forward-char)) | |
(set-mark-command nil) | |
;; while we find sexps we move forward on the line | |
(while (and (<= (point) (car (bounds-of-thing-at-point 'sexp))) | |
(not (= (point) (line-end-position)))) | |
(forward-sexp) | |
(while (looking-at " ") | |
(forward-char))) | |
(kill-ring-save (mark) (point)) | |
;; go to the next line and copy the sexprs we encountered | |
(paredit-newline) | |
(set-mark-command nil) | |
(yank) | |
(exchange-point-and-mark)) |
(eval-after-load "paredit" '(progn (define-key paredit-mode-map (kbd "C-S-d") 'paredit-duplicate-after-point)))Edit: Here a fix for when the sexp is the last expression in the buffer.
Nice idea. Have you tried expand-region ? It doesn't do quite what you're trying here, but it handles most of the 'sexp that straddles a line ending issues'
ReplyDelete