Closed jcs090218 closed 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
This is available via the actions menu (hit TAB
) for commands like helm-projectile-find-file
.
So there wouldn't be a standard function call for other-window
?
I know there is
projectile-find-file-other-window
, is there a helm version of this? I couldn't find one! Thank you!