bbatsov / helm-projectile

Helm UI for Projectile
327 stars 71 forks source link

[Feature Request] - `helm-projectile-find-file-other-window` #122

Closed jcs090218 closed 5 years ago

jcs090218 commented 5 years ago

I know there is projectile-find-file-other-window, is there a helm version of this? I couldn't find one! Thank you!

jcs090218 commented 5 years ago

I implemented by doing the following code.

;;;###autoload
(defun jcs-helm-projectile-find-file-other-window ()
  "Find file in project to other window."
  (interactive)
  (let ((record-dd default-directory))
    (jcs-other-window-next 1 t)
    (setq default-directory record-dd)
    (call-interactively #'helm-projectile-find-file)))

I wish there is still a standard way from this project. :D

xiongtx commented 5 years ago

This is available via the actions menu (hit TAB) for commands like helm-projectile-find-file.

jcs090218 commented 5 years ago

So there wouldn't be a standard function call for other-window?