-
-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
helm-swap-windows not working #196
Comments
confirmed. But I could't handle this with a few minutes. [MEMO]
;; ~/.debug.emacs.d/helm-swoop/init.el
;; you can run like 'emacs -q -l ~/.debug.emacs.d/{{pkg}}/init.el'
(when load-file-name
(setq user-emacs-directory
(expand-file-name (file-name-directory load-file-name))))
(prog1 "leaf"
(custom-set-variables
'(package-archives '(("org" . "https://orgmode.org/elpa/")
("melpa" . "https://melpa.org/packages/")
("gnu" . "https://elpa.gnu.org/packages/"))))
(package-initialize)
(unless (package-installed-p 'leaf)
(package-refresh-contents)
(package-install 'leaf)))
(leaf helm
:ensure t
:require helm-config
:global-minor-mode t
:bind (helm-map
("C-S-t" . helm-swap-windows))
:config
(leaf helm-swoop
:ensure t
:leaf-defer nil
:bind (("C-S-s" . helm-swoop)))) |
tried it, and it works okay with a normal file but not with an org file.... it still does what i said above.... doesnt allow you to select any candidates with cursor up/down or C-p C-n, it jumps to the last candidate then stops. If you swap back to the original windows then works again even with an org file. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After using helm-swap-windows with an Org file you cannot select an entry in Helm Swoop using either C-n C-p or the up/down cursors.
The text was updated successfully, but these errors were encountered: