Replies: 5 comments
-
I made a fork and added a helper function that takes a bool for See the commit here, let me know if a PR should be created. I am new to the code base so I am not convinced this is the most idiomatic way to approach it, but its working well enough that I can keep kicking the tires on helix! |
Beta Was this translation helpful? Give feedback.
-
With regards to commands that call up a picker, there is a keybind to open the result in a new split already. I see your PR figures out whatever the next split is and reuses it instead. That would be cool to also have a keybind for in pickers and should be fairly easy to add by copying and modifying, no? |
Beta Was this translation helpful? Give feedback.
-
Oh nice, I did not realize there was as keybind in the picker already, I will take a look for that. I do think that would be better in that case -- allowing the user to defer the decision of which window to use at the end of the selection process. For |
Beta Was this translation helpful? Give feedback.
-
@EpocSquadron , Thank you for pointing out the keybinds on |
Beta Was this translation helpful? Give feedback.
-
Here is the PR for this issue. |
Beta Was this translation helpful? Give feedback.
-
I am enjoying test driving helix and think it could be my daily driver (using spacemacs now) once a few more things land. One that I have not seen in the issue history yet is the idea of moving the "found" items from the
Picker
into the "other" split window. This is a pattern I use all the time, where I am editting one file, but then I want to see the definion of something in another window, without replacing the current window with the search result. I use this "other window" workflow for goto definition (1) as well as local file (2) and project wide (3) searching.In emacs I can use
g + d
to goto definition in the current window andg + D
to goto definition in the "other" window. It's quite handy!Awesome project, thank you for all the work. Looking forward to using helix more in the future!
Beta Was this translation helpful? Give feedback.
All reactions