In article <k39k6JAto2E7EwSj@...> of Tue, 29 May 2001 10:21:49 in !vim-dev, Walter Briscoe <wbriscoe@...> writes ... [snip] ... ...
21196
Bram Moolenaar
Bram@...
May 30, 2001 3:06 pm
... Good! I'll keep my hands of the dosinst.c for now. Looking forward to your patch. -- hundred-and-one symptoms of being an internet addict: 34. You laugh...
21197
Jonathon Merz
jmerz42@...
May 30, 2001 4:08 pm
Hi, I've got another update to the Windows install.exe here. First, this does not include a fix for the problem that Walter Briscoe is working on (my method...
21198
Bram Moolenaar
Bram@...
May 30, 2001 5:15 pm
... Good to see further improvements. Since you plan to make further changes, I won't include the patch to dosinst.c now. Please make further patches against...
21199
Daniel Einspanjer
daniel-ml@...
May 30, 2001 5:52 pm
Hey guys.. this is my first time to play with vim60 (or any vim from src for that matter.. :) so if I am doing something wrong, please don't be too upset, and...
21200
Ron Aaron
raaron@...
May 30, 2001 6:06 pm
Here is a simple example of something wrong (I think): cd vim/src let files=glob(39;*.c') echo matchstr(files, ".*\n\\{0,1}") --> used to print out just the...
21201
Daniel Einspanjer
daniel-ml@...
May 30, 2001 6:25 pm
Hey.. me again. ;) First off, I just have to apologize to everyone for that horrible prior post. In the comment "(I have that to, but it's mostly...),...
21202
Jonathon Merz
jmerz42@...
May 30, 2001 6:43 pm
... Oops, that's my fault. Thanks for catching and fixing it! I looked through some of the rest of the code that I'd been working with and found that there are...
21203
J. David Boyd
dave@...
May 30, 2001 6:51 pm
Has anyone already reported that the '-' option to read from stdin does not work in 6.0ah? It worked fine in 6.0ag... Dave...
21204
Bram Moolenaar
Bram@...
May 30, 2001 8:31 pm
... Yes, and a patch has been sent to the list. Didn't you see it? [Quote included purely by accident...] -- Everyone has a photographic memory. Some don't...
21205
Bram Moolenaar
Bram@...
May 30, 2001 8:32 pm
... When did it used to match only the first file? ".*" matches the whole thing, and you match zero times "\n". This will match the first name: echo...
21206
Bram Moolenaar
Bram@...
May 30, 2001 8:32 pm
... This is a known problem. Vim rounds off the window size to a multiple of the character cells use. Thus the gap depends on the font size. This is still ...
21207
Daniel Einspanjer
daniel-ml@...
May 30, 2001 8:57 pm
... That's not really a bug. You might want to use the scrollbar for something else. ... It just seemed a bit inconsistent to me. Here are the different...
21208
Stephen Rasku
stephen@...
May 30, 2001 9:19 pm
I am just curious what order the buffer list in the Buffers menu is in. It's not in numerical order. It looks like it tried to put it in alphabetical order...
21209
Ron Aaron
raaron@...
May 30, 2001 10:14 pm
... All I know is that the code did work as I intended prior to 6.0ah . The intention was to match anything up to a newline; but I see it was incorrect code....
21210
Daniel Einspanjer
daniel-ml@...
May 30, 2001 10:58 pm
On Wed May 30, 2001, Bram Moolenaar wrote: ... Well.. I looked into it.. Prolly not anyone's first choice, but here is what I found out. Maybe it will help...
21211
Robert Webb
RobertW@...
May 31, 2001 12:39 am
... That function makes sure the window is a multiple of the character width/height, so as you resize a window you will see it jump to multiples of these. So...
21212
Thore B. Karlsen
eightbit@...
May 31, 2001 12:47 am
... Why is it ever needed, though? Does a window that is not a multiple of the character width/height cause any problems with the rendering of the text? IMHO...
21213
Daniel Einspanjer
daniel-ml@...
May 31, 2001 1:41 am
I could be mistaken about what the results of this rounding might be, but even with the entirity of that function commented out, if you resize the window, it...
21214
Robert Webb
RobertW@...
May 31, 2001 1:50 am
... I think maybe it only handles the rubber-band rectangle you get during resizing, if you don't have opaque window resizing enabled, but I'm not sure. Rob....
21215
Daniel Einspanjer
daniel-ml@...
May 31, 2001 3:53 am
... My personal thought is that the rubber-band isn't worth the poor maximize behavior or a lot of fixing the code to behave properly.. But at the very least,...
21216
Flemming Madsen
fma@...
May 31, 2001 6:07 am
... wkr /Flemming...
21217
Ralf Arens
ralfarens@...
May 31, 2001 6:42 am
Hi, I didn't follow the development of Vim-6 too closely, 6.0af is the first version I test after 6.0q. If I use ":h -whatever-" I get this error message: ...
21218
Ralf Arens
ralfarens@...
May 31, 2001 6:42 am
Hi, try this ... -- type "1" now -- you typed 2 Vim expands nmap's in getchar(), if they are non-ambiguous (:nmap 12 45, :nmap 13 46, will result in "1" after...
21219
Ralf Arens
ralfarens@...
May 31, 2001 6:42 am
Hi, in Vim5 I used this to get one char from the user: fun! Getchar() let @- = '#' exe 'norm "-Pr' exe 'norm x' echo "you typed ".@- endfun This doesn't work...
21220
Faller Gyula
faller-vim@...
May 31, 2001 9:07 am
... behave the same as ... the right hand side, ... to indicate it is ... still be moved around. ... happened at least as ... to a multiple of the ... size....
21221
Ralf Arens
ralfarens@...
May 31, 2001 9:59 am
... [...] I just compiled and installed vim-6.0ah, now it works fine. I compared the files docs/tags of 6.0af and 6.0ah but couldn't find any significant ...
21222
Bram Moolenaar
Bram@...
May 31, 2001 10:39 am
... Since getchar() was added to have some way for a mapping to get an argument, I think the character obtained with getchar() should not be mapped. I'll make...
21223
Bram Moolenaar
Bram@...
May 31, 2001 10:39 am
... Use the menu entry Edit/Global Settings/Toggle Left Scrollbar. This actually adds or removes the 'l' flags from the 'guioptions39; option. One might desire...
21224
Bram Moolenaar
Bram@...
May 31, 2001 10:39 am
... I think you are looking at this from the wrong way. Suppose a user wants to resize his window, making the text area e.g., 80 characters wide. Then he ...