... I see a variation of this. If I start gvim from a command line as $ gvim -N -u NONE I get an 80x24 window, as expected. Executing ":set lines=999" ...
65645
John Little
John.B.Little@...
Jun 26, 2012 7:07 am
... I get this too, with KDE 4.7.4, and also Gnome 3 (ugh) and Gnome 3 classic, vim 7.3.566 and also 7.3.154. Regards, John Little -- You received this message...
65646
John Little
John.B.Little@...
Jun 27, 2012 4:45 am
Doing a bit of looking around in option.c, 'lines39; is only limited to 1000, and vim-gtk seems to rely on a window resize event coming back from the gui to set...
65647
John Little
John.B.Little@...
Jun 27, 2012 6:53 am
... That was written with the faulty recall of a late night debug session. option.c does call gui_set_shellsize, but not directly on 'lines39; being set, rather...
65648
John Little
John.B.Little@...
Jun 28, 2012 3:48 am
As I expected, setting fit_to_display gives a smaller vim window than not setting it, two lines less, with a gap at the top of the display, unless the vim...
65649
Ingo Karkat
swdev@...
Jun 29, 2012 9:08 am
Hello Vim developers, Someone on the Vim subreddit complained that :vimgrep does not obey the 'wildignore39; setting, and therefore (slowly) searches files that...
Patch 7.3.568 Problem: Bad indents for #ifdefs. Solution: Add and remove spaces. (Elias Diem) Files: src/globals.h ... *************** *** 513,520...
65652
Bram Moolenaar
Bram@...
Jun 29, 2012 10:51 am
... Thanks! I'll include it. -- hundred-and-one symptoms of being an internet addict: 68. Your cat always puts viruses on your dogs homepage /// Bram...
65653
Bram Moolenaar
Bram@...
Jun 29, 2012 10:56 am
Patch 7.3.569 Problem: Evaluating Vim expression in Python is insufficient. Solution: Add vim.bindeval(). Also add pyeval() and py3eval(). (ZyX) Files:...
65654
Bram Moolenaar
Bram@...
Jun 29, 2012 10:57 am
Patch 7.3.570 Problem: ":vimgrep" does not obey 'wildignore39;. Solution: Apply 'wildignore39; and 'suffixes39; to ":vimgrep". (Ingo Karkat) Files:...
65655
vim@...
Jun 29, 2012 11:12 am
Updates: Status: Fixed Comment #1 on issue 69 by brammool...@...: Redundant condition: If availableBytes > 0 in os_win32.c:3461 ...
Updates: Status: Fixed Comment #1 on issue 68 by brammool...@...: duplicate branches for if and else in src/gui_xmebw.c ...
65658
Bram Moolenaar
Bram@...
Jun 29, 2012 11:19 am
Patch 7.3.572 Problem: Duplicate statement in if and else. (Dominique Pelle) Solution: Remove the condition and add a TODO. Files: src/gui_xmebw.c ......
65659
vim@...
Jun 29, 2012 11:28 am
Updates: Status: Fixed Comment #1 on issue 70 by brammool...@...: Array index is used before limits check in ops.c ...
65660
Bram Moolenaar
Bram@...
Jun 29, 2012 11:34 am
Patch 7.3.573 Problem: Using array index before bounds checking. Solution: Swap the parts of the condition. (Dominique Pelle) Files: src/ops.c ... ...
65661
vim@...
Jun 29, 2012 11:40 am
Updates: Status: Fixed Comment #2 on issue 64 by brammool...@...: Can't paste the <0c> character on Ex or / command line when using 'incsearch39; ...
65662
Bram Moolenaar
Bram@...
Jun 29, 2012 11:44 am
Patch 7.3.574 Problem: When pasting a register in the search command line a CTRL-L character is not pasted. (Dominique Pelle) Solution: Escape the CTRL-L....
65663
Bram Moolenaar
Bram@...
Jun 29, 2012 11:56 am
Patch 7.3.575 Problem: "ygt" tries to yank instead of giving an error. (Daniel Mueller) Solution: Check for a pending operator. Files: src/normal.c ...
65664
Ingo Karkat
swdev@...
Jun 29, 2012 12:58 pm
... After this patch, Vim fails to compile on my (admittedly, outdated, but useful as a minimal Portable Ubuntu instance running on a Windows Laptop) Ubuntu...
65665
Chris Sutcliffe
ir0nh34d@...
Jun 29, 2012 1:01 pm
... <snip> ... Having the same issue with Cygwin. $ python --version Python 2.6.8 $ uname -a CYGWIN_NT-6.1 BMOTEC3017201LT 1.7.15(0.260/5/3) 2012-05-09 10:25...
65666
Bram Moolenaar
Bram@...
Jun 29, 2012 1:06 pm
Patch 7.3.576 Problem: Formatting of lists inside comments is not right yet. Solution: Use another solution and add a test. (Tor Perkins) Files:...
65667
Bram Moolenaar
Bram@...
Jun 29, 2012 1:17 pm
... It appears PyCapsule_GetPointer is new in Python 2.7. We should support Python 2.5. It is only used in convert_dl(). Perhaps there is another way to do...
65668
Andy Kittner
andkit@...
Jun 29, 2012 1:39 pm
(apologies if anyone gets this twice, the reply didn't make it to the list due to the wrong sender-adress) On 29.06.2012 15:17, Bram Moolenaar wrote:> ... If I...
65669
Bram Moolenaar
Bram@...
Jun 29, 2012 1:51 pm
Patch 7.3.577 Problem: Size of memory does not fit in 32 bit unsigned. Solution: Use Kbyte instead of byte. Call GlobalMemoryStatusEx() instead of ...
65670
vim@...
Jun 29, 2012 2:09 pm
Status: New Owner: ---- Labels: Type-Defect Priority-Medium New issue 72 by inkar...@...: :vimgrep with 'autochdir39; set causes second match to be...
65671
Bram Moolenaar
Bram@...
Jun 29, 2012 2:11 pm
... Thanks for the hint. -- hundred-and-one symptoms of being an internet addict: 76. Your ISP regards you as a business partner rather than as a customer. ///...
65672
Bram Moolenaar
Bram@...
Jun 29, 2012 2:20 pm
Patch 7.3.578 Problem: Misplaced declaration. Solution: Move declaration to start of block. Files: src/if_py_both.h ... *************** *** 818,838...
65673
Bram Moolenaar
Bram@...
Jun 29, 2012 2:32 pm
Patch 7.3.579 (after 7.3.569) Problem: Can't compile with Python 2.5. Solution: Use PyCObject when Capsules are not available. Files:...