Allow c_^R^L to insert current line to cmdline#2857
Closed
andymass wants to merge 1 commit intovim:masterfrom
Closed
Allow c_^R^L to insert current line to cmdline#2857andymass wants to merge 1 commit intovim:masterfrom
andymass wants to merge 1 commit intovim:masterfrom
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2857 +/- ##
==========================================
- Coverage 75.44% 75.43% -0.01%
==========================================
Files 92 92
Lines 134829 134834 +5
==========================================
- Hits 101721 101715 -6
- Misses 33108 33119 +11
Continue to review full report at Codecov.
|
adizero
pushed a commit
to adizero/vim
that referenced
this pull request
May 19, 2018
Problem: Cannot insert the whole cursor line. Solution: Make CTRL-R CTRL-L work. (Andy Massimino, closes vim#2857)
janlazo
added a commit
to janlazo/neovim
that referenced
this pull request
Aug 17, 2018
Problem: Cannot insert the whole cursor line. Solution: Make CTRL-R CTRL-L work. (Andy Massimino, closes vim/vim#2857) vim/vim@e2c8d83
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem: There is no easy way to insert the current line into the cmdline like with current word and filename.
Solution: Add c_^R^L to insert the current line.
I often want to do this and am surprised it isn't provided along with
c_^R^W,c_^R^F, etc. It's useful when processing a list of items or shell commands. Of course, I have the mappingwhich works almost the same. This change would be a simple and useful addition to vim.