Guest User

Untitled

a guest
Sep 14th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. (defadvice narrow-to-region (around clone-when-narrowing-already-visible-buffer activate)
  2. "Clone an indirect buffer when attempting to narrow the
  3. contents of buffer visible in more than one window."
  4. (save-excursion
  5. (when (> (length (get-buffer-window-list (current-buffer) nil nil)) 1)
  6. (let ((cloned-buffer (clone-indirect-buffer nil t) ))
  7. (switch-to-buffer cloned-buffer t)))
  8. ad-do-it))
Add Comment
Please, Sign In to add comment