mattfidler / tabbar-ruler.el

Tabbar Ruler Mode
54 stars 10 forks source link

adding clone indirect buffer in popup #31

Closed rhoit closed 8 years ago

mattfidler commented 8 years ago

The function that works for me is:


(defun tabbar-popup-clone-indirect-buffer ()
  "Tab-bar pop up clone indirect-buffer"
  (interactive)
  (let ((buffer (tabbar-tab-value tabbar-last-tab)))
    (with-current-buffer buffer
      (call-interactively 'clone-indirect-buffer))))
mattfidler commented 8 years ago

What is the point of clone indirect buffer. I cannot find a use for it.

rhoit commented 8 years ago

@mattfidler to use multiple narrow mode!

rhoit commented 8 years ago

here is some use case!

http://demonastery.org/2013/04/emacs-narrow-to-region-indirect/