Re: Bug: Win32 guitabtooltip doesn't respect backslash-escaped special chars

2008-01-03 Fir de Conversatie Bram Moolenaar
Erik Falor wrote: While writing a guitabtooltip function, I discovered that the tooltips in Win32 don't properly handle backslash-escaped chars. In particular, '\n' comes out as a box, and '\t' appears to terminate the string like '\0'. The GTK gui on Linux, however, works as expected.

Patch 7.1.189

2008-01-03 Fir de Conversatie Bram Moolenaar
Patch 7.1.189 (after 7.1.104) Problem:Patch 7.1.104 was incomplete. Solution: Also call plain_vgetc() in ask_yesno(). Files: src/misc1.c *** ../vim-7.1.188/src/misc1.c Wed Jan 2 17:48:24 2008 --- src/misc1.c Wed Jan 2 17:48:00 2008 *** *** 222,231

Patch 7.1.190

2008-01-03 Fir de Conversatie Bram Moolenaar
Patch 7.1.190 Problem:Cursor after end-of-line: iA sentence.Esc) Solution: Move cursor back and make motion inclusive. Files: src/normal.c *** ../vim-7.1.189/src/normal.c Wed Jan 2 16:25:20 2008 --- src/normal.cWed Jan 2 22:04:38 2008 *** *** 6564,6569 ---

Patch 7.1.191

2008-01-03 Fir de Conversatie Bram Moolenaar
Patch 7.1.191 Problem:Win32 GUI: after patch 7.1.168 there is still a problem when clicking in a scrollbar. (Juergen Jottkaerr) Solution: Don't check the input buffer when dragging the scrollbar. Files: src/gui.c *** ../vim-7.1.190/src/gui.cTue Nov 6 22:26:39 2007

Patch 7.1.192

2008-01-03 Fir de Conversatie Bram Moolenaar
Patch 7.1.192 Problem:With Visual block selection, s and typing something, CTRL-C doesn't stop Vim from repeating the replacement in other lines, like happens for I. Solution: Check for got_int to be set. Files: src/ops.c *** ../vim-7.1.191/src/ops.cSat

External match in a lookbehind assertion

2008-01-03 Fir de Conversatie James Vega
The current syntax highlighting of Perl heredocs[0] (and similar constructs in other languages) has a known limitation of highlighting anything after the heredoc start (e.g., EOF) and on the same line as a string instead of using normal highlighting. [0] - syn region perlHereDoc

gvim is slow opening, saving, and scanning tags on a file across the network

2008-01-03 Fir de Conversatie aj
I am running gvim on a windows box, version 7.1. There are a series of coldfusion source files located on another machine on the network. I have a shortcut to the network directory containing these files on my desktop. When I try to open one of these files using notepad, it opens instantly.

Patch 7.1.193

2008-01-03 Fir de Conversatie Bram Moolenaar
Patch 7.1.193 Problem:Some Vim 5.x digraphs are missing in Vim 7, even though the character pairs are not used. (Philippe de Muyter) Solution: Add those Vim 5.x digraphs that don't conflict with others. Files: src/digraph.c *** ../vim-7.1.192/src/digraph.cThu Sep

Re: External match in a lookbehind assertion

2008-01-03 Fir de Conversatie Bram Moolenaar
James Vega wrote: The current syntax highlighting of Perl heredocs[0] (and similar constructs in other languages) has a known limitation of highlighting anything after the heredoc start (e.g., EOF) and on the same line as a string instead of using normal highlighting. [0] - syn region

Re: Patch 7.1.193

2008-01-03 Fir de Conversatie Zvi Har'El
Dear Bram, I believe this patch contradicts the spirit of Vim digraphs since Vim 6, which is expressed in digraph.txt as follows: *These are the RFC1345 digraphs for the one-byte characters. See the output of* *:digraphs for the others. The characters above 255 are only

Patch 7.1.194

2008-01-03 Fir de Conversatie Bram Moolenaar
Patch 7.1.194 Problem::echo glob('~/{}') results in /home/user//. Solution: Don't add a slash if there already is one. Files: src/os_unix.c *** ../vim-7.1.193/src/os_unix.cSat Dec 1 17:18:45 2007 --- src/os_unix.c Thu Jan 3 18:52:22 2008 *** *** 5482,5488

Patch 7.1.195

2008-01-03 Fir de Conversatie Bram Moolenaar
Patch 7.1.195 Problem:'0 mark doesn't work for ~/foo ~ foo. Solution: Don't expand the whole file name, only ~/. Files: src/mark.c *** ../vim-7.1.194/src/mark.c Thu May 10 18:48:03 2007 --- src/mark.c Thu Jan 3 20:17:29 2008 *** *** 505,513 { /*

Re: External match in a lookbehind assertion

2008-01-03 Fir de Conversatie James Vega
On Thu, Jan 03, 2008 at 06:10:36PM +0100, Bram Moolenaar wrote: James Vega wrote: The current syntax highlighting of Perl heredocs[0] (and similar constructs in other languages) has a known limitation of highlighting anything after the heredoc start (e.g., EOF) and on the same line as

Patch 7.1.196 (extra)

2008-01-03 Fir de Conversatie Bram Moolenaar
Patch 7.1.196 (extra) Problem:Win32 GUI: \n in a tooltip doesn't cause a line break. (Erik Falor) Solution: Use the TTM_SETMAXTIPWIDTH message. Files: src/gui_w32.c *** ../vim-7.1.195/src/gui_w32.cThu Aug 30 12:24:21 2007 --- src/gui_w32.c Thu Jan 3

Re: Patch to allow ctermfg or bg values as #rrggbb

2008-01-03 Fir de Conversatie Matt Wozniski
On Dec 20, 2007 11:44 PM, Matt Wozniski [EMAIL PROTECTED] wrote: ... So, I've reworked the patch to support, in addition to the xterm-compatible palette, Eterm and Konsole's palettes. Which palette is used for the matching is controlled by a new option, 'termpalette' (short name 'tpal').

Re: Bug in src/Makefile

2008-01-03 Fir de Conversatie Philip Prindeville
Bram Moolenaar wrote: Philip Prindeville wrote: Well, this is what I finally ended up using: +--- vim71/src/Makefile.orig 2007-05-12 04:57:13.0 -0700 vim71/src/Makefile2007-12-18 23:39:14.0 -0800 +@@ -1074,8 +1074,10 @@ + # default vi editor, it will

Re: Patch 7.1.193

2008-01-03 Fir de Conversatie Bill McCarthy
On Thu 3-Jan-08 10:54am -0600, Bram Moolenaar wrote: Patch 7.1.193 Problem:Some Vim 5.x digraphs are missing in Vim 7, even though the character pairs are not used. (Philippe de Muyter) Solution: Add those Vim 5.x digraphs that don't conflict with others. Files:

Re: Patch 7.1.193

2008-01-03 Fir de Conversatie Bill McCarthy
On Thu 3-Jan-08 8:49pm -0600, Bill McCarthy wrote: On Thu 3-Jan-08 10:54am -0600, Bram Moolenaar wrote: Patch 7.1.193 Problem:Some Vim 5.x digraphs are missing in Vim 7, even though the character pairs are not used. (Philippe de Muyter) Solution: Add those Vim 5.x