-
Notifications
You must be signed in to change notification settings - Fork 297
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
ViMode: Yanking until given character #3735
Comments
If one wanted to implement this functionality using only methods from PSReadline, how would you programmatically access the register which is used in command mode to store the yanked text? I mean in the same way one can access the kill ring using only the psconsolereadline class. |
I am not sure. How are y0 and y$ implemented? Shouldn't be the same? First find a position of the searched character and then yank from current position to the found position? |
@Konstantin-Glukhov Thanks for the reply. My problem in particular is that I cannot find, looking at the documentation, a psreadline method like [Microsoft.PowerShell.PSConsoleReadLine]::ViPlaceThisStringInTheViClipboard(<string>) Implementing the motions seems already possible with the available methods, but it seems it is not possible to directly access the place where text is yanked. I'm happy to be proven wrong, though. |
Did you find how <y,$> is implemented? |
Not yet. I know nothing about C#, so it's kind of hard for me. EDIT: the text is pasted to a private |
Prerequisites
Description of the new feature/enhancement
Yanking until given character for -ViMode Command
Proposed technical implementation details (optional)
<y,t> ViYankToBeforeChar Yanks until given character forward.
<y,T> ViYankToBeforeCharBackward Yanks until given character backward.
<y,f> ViYankToChar Yanks inclusively until given character forward.
<y,F> ViYankToCharBackward Yanks inclusively until given character backward.
The text was updated successfully, but these errors were encountered: