-
Notifications
You must be signed in to change notification settings - Fork 283
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
Commands: QuickOpen - open in vertical split / open in horizontal split #564
Comments
I would suggest making the default horizontal split be This is the default command that is used by fzf.vim and ctrlp.vim However, the command-t vim plugin uses VSCode currently uses |
As an avid Vim user myself, I find If I had to vote, I'd go with |
I'm up for giving this a shot. 🙂 |
@bryphe looking through the code I believe we don't distinguish between what kind of menu is being open. It looks like we're using If that's the case, I thought it might be a good idea talking a bit about how we move forward. Since we're about to add bindable commands for opening a given file in a split, I can see a use case for adding the ability to determine what type of menu is currently open. We could either extend What are your thoughts? |
For the QuickOpen, it is often convenient to be able to open directly in a split.
We should have shortcut keys out-of-the-box for this, as well as have them be bindable commands.
Proposal:
quickOpen.verticalSplit
- opens the currently selected file in a vertical split (Default:<c-v>
)quickOpen.horizontalSplit
- opens the currently selected file in a horizontal split (Default:<c-s>
)These commands would only be enabled when the quickopen menu is up
The text was updated successfully, but these errors were encountered: