emacsorphanage / helm-swoop

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

helm-full-frame breaks helm-swoop #126

Open vkz opened 6 years ago

vkz commented 6 years ago

helm-swoop uses a split window to do its magic. Sadly, enabling (setq helm-full-frame t), while handy to have your helm queries appear in the same window, defeats helm-swoop. For these to co-exist I perform the following workaround:

(defadvice helm-swoop (around helm-swoop-no-full-frame activate)
    (let ((helm-full-frame nil))
      ad-do-it))

Might be a good idea to disable/restore helm-full-frame in helm-swoop proper instead of the user code. Or maybe just make a note in the docs.