-
Notifications
You must be signed in to change notification settings - Fork 299
Conversation
Thanks for all the help here, @samvv (and all your work too, @Bretley ) ! I just tried out the pull and it looks so cool... I can't wait for this to make it in 👍 One interesting thing here today is that Oni really has two 'command' experiences:
Long-term, it might make sense to combine them in some way - it's nice if there is a unified model. Part of the challenge is balancing the idea of bringing new users to vim (who come from Atom/Sublime/VSCode, and aren't familiar with the command line/ex mode), and also giving power-vim-users the same functionality they expect. But from that perspective, maybe it's okay to have a split - let the new users get their feet wet with the command palette, and let the veteran vimmers have the cmdline (with an improved UX!). When I was thinking about the keybindings in the quote above - I was thinking more in terms of the command palette - I figured that's the first place a new user would go (and hopefully we can prompt them to get there w/ a better start screen experience!): I'm actually not sure how it would work in the externalized |
I actually quite like the idea of having all commands nicely packed in one place, so that when I forget one I can simply look it up (that's why I wanted this so badly). I actually thought of parsing the I think I make this scenario work if you like it. Edit: forgot to mention: that would imply only one pane (the command palette), as you suggested @bryphe |
Cool, yes, if we can figure out a way to consolidate them in a common place, that would be great! I do think that having separate implementations - the command palette and the command line mode externalized - would be quicker to implement, and it would let us make an incremental step in that direction. But combine them up-front in a way that is intuitive, that's great.
If we just bring in the static commands, we could potentially generate that offline (and come up with friendly names for some of the commands). We would need to find a way to get
Would this mean we'd integrate the output from the |
That's exactly my thought. 😄
Good question ... I'd say yes, if we really wanted to get a fluent interaction. Will not be as straightforward as it sounds, though ... on the other hand, it's almost weekend so I'll be having some time to experiment. Did you have something else in mind? |
Right, agree with it not being straightforward - the menu might not be able to support the full set of interactions that the There are two alternatives to combining: one is to surface everything via the command palette, and the other is to surface everything via the cmdline. The challenge with the first approach - everything via the command palette - is we definitely wouldn't have the full support of the capabilities of the existing command line, and we'd have to rationalize things like passing arguments. The challenge with the second approach - everything via the cmdline - is that we'd have to let Vim know about all the handlers that Oni has, and some discoverability is sacrificed (the fuzzy finders usually are verbose in terms of the command name + text, which I'm not sure how we'd replicate in the vim cmdline). So I guess there's 4 options:
Just the above options... I lean towards the 4th - implement separately - just because it seems the simplest today, and can satisfy both the novice user and experienced vim user scenarios. However, I am not an expert on the external cmdline and the full set of capabilities there - so I'm open to exploring any of the possibilities. Interested to see what you come up with! 👍 Thanks for your thinking around this, @samvv ! |
@samvv @bryphe The majority of the work here seemed to be done so I had a quick look at fixing conflicts, and tweaking it to use styled components. Unfortunately theres an issue with the cursor which is that as the event happens essentially separately from the input/output component so an input element for example doesn't have full cursor control, @Bretley @samvv not sure if either of you are still working on this or had any plans as to how to get round this? Happy to leave this be if either of you are still working on it was just thinking to get the simplest implementation working since you've both done all the heavy lifting and then that can be iterated on in the future rather than see the work get buried in a sea of merge conflicts? |
Yes, I was wondering the same thing about this! It seems like we might have to render the cursor, like we do for the
This is a great idea! We could bring it in behind an |
I'll close this out, since there is a lot of progress in #1191! We can open a new PR for any additional functionality. Thanks all for the contributions here! |
Shamelessly taken from @Bretley, this merge takes his code and makes it again compatible with
master
. Quoting @bryphe from #1121:That's what I'd like to do now. If there are any additional pointers on how I should continue, please let me know.