Vim slow after big count insert

2013-07-20 Fir de Conversatie Dimitar DIMITROV
There is no use case If you do something stupid by accident most vim operations can be aborted by ctrl-c (exception: python, rbuy, .. scripts) Try to abort it you will see the success you have. So there is still nothing to fix or talk about unless there is a use case. Marc Weber  

Re: Vim slow after big count insert

2013-07-20 Fir de Conversatie LCD 47
On 19 July 2013, Mike Williams mike.willi...@globalgraphics.com wrote: On 19/07/2013 15:52, Mike Williams wrote: On 19/07/2013 12:18, Dimitar DIMITROV wrote: Hi, Did a search on the vim_dev archives but couldn't find anything related to this. Sorry if this is redundant. Basically vim is

Re: $MYVIMRC not set

2013-07-20 Fir de Conversatie Bram Moolenaar
Dimitar Dimitrov wrote: After reading the docs about -u, I can't see it mentioned that in that case $MYVIMRC wouldn't be setup. But it isn't. Try with vim -u ~/.vimrc I suppose it's useful to add a remark about this in the docs. -- Contrary to popular belief, it's often your clothing

Re: regexp: \p doesn't match double width character

2013-07-20 Fir de Conversatie Bram Moolenaar
Yukihiro Nakadaira wrote: \p doesn't match double width character. And its behavior depends on 'ambiwidth' option. :set encoding=utf-8 :echo match(\u3042, '\p') HIRAGANA LETTER A -1 :set ambiwidth=single :echo match(\u00EC, '\p') LATIN SMALL LETTER I WITH GRAVE 0 :set

:25CR does not save cursor position to jump list

2013-07-20 Fir de Conversatie Dan
These commands perform the same function: 25G 25gg :25CR But the first two save the cursor position to the jump list, whereas the last command does not, which I feel is inconsistent and a bug. For example, with the following buffer: 1 abc 2 def 3 ghi Entering the following commands: :1CR :2CR