Re: dw but not dp

2015-06-21 Thread Enno
By the way, 'dV}' (and 'dV{') is the single case where the 'v/V/' operator command happens to be used over here, especially when coding. I'm trying out onoremap } &l:spell ? 'V}' : '}' onoremap { &l:spell ? 'V{' : '{' -- -- You received this message from the "vim_use" maillist. Do not top-po

Re: dw but not dp

2015-06-20 Thread Nikolay Pavlov
2015-06-20 21:58 GMT+03:00 Mark Volkmann : > Since dw deletes from the cursor position to the end of the current word, I > assumed dp would delete from the cursor position to the end of the current dw is the exception. Most of motions are either `i{char}`/`a{char}` or just `{char}`, but not *both*

Re: dw but not dp

2015-06-20 Thread Tim Chase
On 2015-06-20 13:58, Mark Volkmann wrote: > Since dw deletes from the cursor position to the end of the current > word, I assumed dp would delete from the cursor position to the end > of the current paragraph. Instead I get "E99: Current buffer is not > in diff mode". The only way I've found to do

dw but not dp

2015-06-20 Thread Mark Volkmann
Since dw deletes from the cursor position to the end of the current word, I assumed dp would delete from the cursor position to the end of the current paragraph. Instead I get "E99: Current buffer is not in diff mode". The only way I've found to do this is d/^$. Is there a better way? -- R. Mark