... Not knowing anything about it, I'd venture a guess it might be e55c4 ...
Jonathon Mah
me@...
Oct 1, 2008 8:42 am
9138
I have noticed the same problem. It is something specific to snapshot 35. Things have gotten WAY worse since I've updated. --Ted ... -- Ted Pavlic...
Ted Pavlic
ted@...
Oct 1, 2008 11:57 am
9139
Additionally, I notice that the problem... *) is worse in insert mode when my new text is "pushing" characters to the right of it. That is, it's not as bad...
Ted Pavlic
ted@...
Oct 1, 2008 12:11 pm
9140
Going back to MacVim-7.2-stable-1.2 fixes the problem. "/Of course" becomes "/Of course". --Ted ... -- Ted Pavlic <ted@...> ...
Ted Pavlic
ted@...
Oct 1, 2008 12:38 pm
9141
... I re-map Esc to a function key (usually f2 or f3 depending on the keyboard) that is much easier to reach. -- Alex Esplin ...
Alex Esplin
alex.esplin@...
Oct 1, 2008 3:38 pm
9142
... Ouch, that is pretty bad. I guess your computer is a lot slower than mine. So the problem is this: Previously the backend would process one event at a...
björn
bjorn.winckler@...
Oct 1, 2008 3:47 pm
9143
Hi Björn, ... That sounds like you'd be implementing that behavior on the back-end. How would that handle the case of repeating a key, and then pressing ...
Jonathon Mah
me@...
Oct 1, 2008 4:45 pm
9144
Hi, I've put together a tentative patch to fix the problem with snap 35 dropping characters. Can those of you experiencing problems please test the patch and...
björn
bjorn.winckler@...
Oct 1, 2008 9:57 pm
9145
... I don't see the problem. If a key is pressed while another is repeating, the repeating key will stop repeating. Did I miss something? ... It does seem...
björn
bjorn.winckler@...
Oct 1, 2008 10:05 pm
9146
... I guess it would require some hacking in the source code to remap Esc. I haven't got any great ideas how best to do this at the moment, but I'll give it...
björn
bjorn.winckler@...
Oct 1, 2008 10:09 pm
9147
Seems to work for me. "/Of course" is "/Of course". :) That's nice. Thanks -- Ted ... -- Ted Pavlic <ted@...> ...
Ted Pavlic
ted@...
Oct 1, 2008 11:47 pm
9148
... I have the following in my .vimrc and it works just fine: "map escape to F3 map <F3> <Esc> map! <F3> <Esc> -- Alex Esplin ...
Alex Esplin
alex.esplin@...
Oct 2, 2008 12:04 am
9149
... I haven't looked at your patch yet, but the situation I was thinking about is when a key is repeated (so there are keypresses in the queue that haven't...
Jonathon Mah
me@...
Oct 2, 2008 5:51 am
9150
... Seems like it would be hard to determine which keypresses indicate scroll events and which do not. I could be mapping just about any key in vim to do the...
Matt Tolton
matt@...
Oct 2, 2008 6:58 am
9151
... Scratch that...it doesn't matter. You're talking about doing this for any repeating key, which makes sense. Sorry. ...
Matt Tolton
matt@...
Oct 2, 2008 7:01 am
9152
I should mention that I'm running OS X 10.4.11 on a 1.67 GHz PowerBook G4. My setup is pretty slow, and so I suspect that it's a good sign that it works for...
Ted Pavlic
ted@...
Oct 2, 2008 11:56 am
9153
... it's all relative, i guess... i see this problem frequently on a 1.5GHz PPC mini at the office and much less frequently (but i still see it!) on a dual...
Steve Huff
hakamadare@...
Oct 2, 2008 1:39 pm
9154
I noticed today that if I'm in full-screen mode, if I hit Cmd-- to shrink the font, the entire Vim window shrinks rather than spreading to fill the entire...
Ted Pavlic
ted@...
Oct 2, 2008 3:37 pm
9155
... The way it works now is: 1. input arrives 2. is it a repeat? 2a. yes - queue it unless there already is input on the queue (in which case it is silently...
björn
bjorn.winckler@...
Oct 2, 2008 4:32 pm
9156
Hi, ... Does "repeat" mean keys, that are coming from auto-repeat, or also keys like when I press two or three times "m"? When it is the second one, it should...
Frank Hellenkamp
jonas.info@...
Oct 2, 2008 5:16 pm
9157
... By "repeat" I mean "auto-repeat", as in "hold down a key and the OS will repeat it for you". If you hit "m" 20 times in a row, then they are all...
björn
bjorn.winckler@...
Oct 2, 2008 5:28 pm
9158
Hi Bee, ... works for me. Björn --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_mac" maillist. For more...
björn
bjorn.winckler@...
Oct 2, 2008 5:31 pm
9159
In my vimrc I mapped space to pagedown, like a web browser, because this is a Mac laptop without dedicated pageup/pagedown keys. I would also like...
Bee
200309@...
Oct 2, 2008 5:36 pm
9160
... Thanks for the confirmation Ted. I'm about to push the patch tonight. I'll probably release a new snapshot this weekend because of this bug. Björn ...
björn
bjorn.winckler@...
Oct 2, 2008 5:40 pm
9161
... seems to address the issue for me; thanks! if anybody would like a patched PPC build (with a bunch of extra Vim features turned on), you can grab it from: ...
Steve Huff
hakamadare@...
Oct 2, 2008 6:41 pm
9162
... Seems to fix it over here. Nico --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_mac" maillist. For more...
Nico Weber
nicolasweber@...
Oct 2, 2008 6:54 pm
9163
Hi, I've pushed a few patches just now, namely: 1. Don't drop keyboard input 2. Jonathon's tabline patches (thanks again Jonathon!) 3. Modifier key as Esc You...
björn
bjorn.winckler@...
Oct 2, 2008 8:58 pm
9164
In the FAQ in the macvim help docs there's information on what to do if "[y]ou have set MacVim to open from an external program and when you finish editing (by...
Michael Dunn
misha.dunn@...
Oct 3, 2008 8:56 am
9165
Hi Misha, ... You can make a shell script to wrap this command: $ cat > ~/bin/mvim-hide #!/bin/sh mvim -c "au VimLeave * maca hide:" $* <Ctrl-D> $ chmod a+x...
Jonathon Mah
me@...
Oct 3, 2008 9:23 am
9166
Jonathon, ... Good idea, that's a much more general solution than mine. M --~--~---------~--~----~------------~-------~--~----~ You received this message from...