Emacs: add narrow-to-function-indirect function
Alan Pearce alan@alanpearce.co.uk
Thu, 10 Apr 2014 19:32:18 +0100
1 files changed, 10 insertions(+), 0 deletions(-)
jump to
M emacs/elisp/ap-functions.el → emacs/elisp/ap-functions.el
@@ -34,4 +34,14 @@ "")) (command (read-shell-command "Shell command: " nil nil nil))) (shell-command (replace-regexp-in-string "%" file-buffer command) to-current-buffer))) +;;;###autoload +(defun narrow-to-region-indirect (start end) + "Restrict editing in this buffer to the current region, indirectly." + (interactive "r") + (deactivate-mark) + (let ((buf (clone-indirect-buffer nil nil))) + (with-current-buffer buf + (narrow-to-region start end)) + (switch-to-buffer buf))) + (provide 'ap-functions)