mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 8.2.2971: cannot yank a block without trailing spaces
Problem: Cannot yank a block without trailing spaces. Solution: Add the "zy" command. (Christian Brabandt, closes #8292)
This commit is contained in:
committed by
Bram Moolenaar
parent
31e299c08f
commit
544a38e44d
@@ -2985,6 +2985,9 @@ dozet:
|
||||
case 'P':
|
||||
case 'p': nv_put(cap);
|
||||
break;
|
||||
// "zy" Yank without trailing spaces
|
||||
case 'y': nv_operator(cap);
|
||||
break;
|
||||
#ifdef FEAT_FOLDING
|
||||
// "zF": create fold command
|
||||
// "zf": create fold operator
|
||||
|
Reference in New Issue
Block a user