emacsorphanage / helm-swoop

Efficiently hopping squeezed lines powered by Emacs helm interface
GNU General Public License v3.0
688 stars 55 forks source link

how can I display buffer at bottom with full width? #197

Closed NicholasBHubbard closed 3 years ago

NicholasBHubbard commented 3 years ago

Right now I have helm-swoop behaving like this:

+---------+----------+
|         |          |
|         |  point   | 
|         |          |
|         +----------+
|         |  helm    |
|         |  swoop   |
+---------+----------+

But what I want is this:

+---------+----------+
|         |          |
|         |  point   | 
|         |          |
---------------------+
|       helm         | 
|      swoop         |
+---------+----------+

And when I edit I would like to be editing in the same bottom frame.

cireu commented 3 years ago

Try (setq helm-swoop-split-window-function 'helm-default-display-buffer)?

This sync the popup action of helm-swoop with other helm extension.

NicholasBHubbard commented 3 years ago

Thanks cireu this works