5 ms·
The defualt mapping of Y is arguably broken since it doesn't follow the normal vi conventions. I have these lines in my .vimrc to "fix" it: "make shift Y b
by mathias_10gen 15y ago
The defualt mapping of Y is arguably broken since it doesn't follow the normal vi conventions. I have these lines in my .vimrc to "fix" it:
"make shift Y behave like shift-[cd] (copy to end of line)
nnoremap Y y$
- graywh 15y agoY being a synonym for yy is from vi. What you mean to say is that it doesn't fit the pattern D/dd and C/cc present.