Patch 7.3.811 Problem: Useless termresponse parsing for SGR mouse. Solution: Skip the parsing. (Hayaki Saito) Files: src/term.c ... *************** ...
68208
Bram Moolenaar
Bram@...
Feb 13, 2013 2:59 pm
Patch 7.3.810 Problem: 'relativenumber is reset unexpectedly. (François Ingelrest) Solution: After an option was reset also reset the global value. Add a...
68209
Bram Moolenaar
Bram@...
Feb 13, 2013 3:11 pm
Patch 7.3.812 Problem: When 'indentexpr39; moves the cursor "curswant" not restored. Solution: Restore "curswant". (Sung Pae) Files: src/misc1.c ... ...
68210
Bram Moolenaar
Bram@...
Feb 13, 2013 3:31 pm
Patch 7.3.813 Problem: The CompleteDone event is not triggered when there are no pattern matches. (Jianjun Mao) Solution: Trigger the event. (Christian...
68211
Bram Moolenaar
Bram@...
Feb 13, 2013 3:50 pm
Patch 7.3.814 Problem: Can't input multibyte characters on Win32 console if 'encoding39; is different from current codepage. Solution: Use...
68212
Bram Moolenaar
Bram@...
Feb 13, 2013 4:06 pm
Patch 7.3.815 Problem: Building with Cygwin and Ruby doesn't work. Solution: Copy some things from the MingW build file. (Ken Takata) Files:...
68213
Bram Moolenaar
Bram@...
Feb 13, 2013 4:36 pm
Patch 7.3.816 Problem: Can't compute a hash. Solution: Add the sha256() function. (Tyru, Hirohito Higashi) Files: runtime/doc/eval.txt, src/eval.c,...
68214
Christian Brabandt
cblists@...
Feb 13, 2013 7:20 pm
Hi clime! ... Looks like a bug to me. However, I think, if you set wildcharm=<Tab> you ... I agree, this is not really useful, without a wildmodevisual()...
68215
Christian Brabandt
cblists@...
Feb 13, 2013 7:24 pm
Hi Bram! ... Can't we just have an 'experimental39; setting, that enables experimental features, e.g. the new fast RE? This would get this feature a lot more ...
68216
Christian Brabandt
cblists@...
Feb 13, 2013 9:18 pm
Hi Bram! ... It's complicated to make this work as the user expects it. I think the easiest solution is something like this patch, which makes sure the ...
68217
Christian Brabandt
cblists@...
Feb 13, 2013 10:47 pm
Hi Bram! ... This segfaults for me at Test 87 in test49.vim This patch fixes it: diff --git a/src/buffer.c b/src/buffer.c ... +++ b/src/buffer.c @@ -1442,7...
68218
Bram Moolenaar
Bram@...
Feb 13, 2013 10:55 pm
... Thanks for the hint. I'll have a closer look later. -- BEDEVERE: Stand by for attack!! [CUT TO enormous army forming up. Trebuchets, rows of PIKEMEN,...
68219
Christian Brabandt
cblists@...
Feb 13, 2013 11:01 pm
Hi Marcin! ... Personally, I have never used nroff macros and I think the 'paragraphs39; and 'sections39; setttings are pretty useless, if you can't use regular ...
68220
Christian Brabandt
cblists@...
Feb 13, 2013 11:05 pm
Hi Bram! ... Ok. But my idea is to have it included and only use it, if users explicitly set the 'experimental39; option. So by default users would still use the...
68221
Bram Moolenaar
Bram@...
Feb 13, 2013 11:06 pm
... The idea was to have a "whitelist" for the pattern. If it passes that then use the new RE code, otherwise fall back to the old stuff. Gradually the...
68222
Nathan Hüsken
nathan.huesken@...
Feb 14, 2013 12:26 am
Hey, I am currently trying to improve the clang_complete plugin to have a global notion of symbols. One thing I would like to do is highlighting all occurences...
68223
James McCoy
jamessan@...
Feb 14, 2013 2:39 am
... If you're ok with the highlighting being window-local, I briefly toyed with something like the following to mimic Eclipse's automatic "highlight the word...
68224
James McCoy
jamessan@...
Feb 14, 2013 2:54 am
Bram, The other day in #vim, someone was wondering why :s/SOMEWORD/\L\u&/ was resulting in sOMEWORD instead of title-case (Someword). That seemed like a...
68225
James McCoy
jamessan@...
Feb 14, 2013 3:13 am
... Oops, messed up my example. :s/sOmeWord/\L\u&/ is better as the expected outcome is "Someword" but only the \u takes effect so it's actually "SOmeWord". ...
68226
ZyX
zyx.vim@...
Feb 14, 2013 3:46 am
If I correctly understood OP, current symbol != all words that are the same as the one under cursor (i.e. local variable in one function is different symbol...
68227
Ben Fritz
fritzophrenic@...
Feb 14, 2013 4:56 am
... I like this idea. I'd be happy to turn the option on and run with it as long as I had the ability to revert to the old mode when needed if I run into a...
68228
Marcin Szamotulski
mszamot@...
Feb 14, 2013 6:36 am
Thanks (once again) for the patch! Here are a few ideas: It would be nice to end paragraph line before the match for some patterns. For example if you have ...
68229
Ingo Karkat
swdev@...
Feb 14, 2013 8:58 am
... Thanks for the patch, Christian. This is certainly useful, also for other command-line mappings. I didn't know about 'wildcharm39;; it looks to me that...
68230
Bram Moolenaar
Bram@...
Feb 14, 2013 9:49 am
... Question is, if you run into a problem, how do you know you have to turn off that option? If syntax highlighting is off it might be obvious, but when some...
68231
Bram Moolenaar
Bram@...
Feb 14, 2013 9:49 am
... Any idea why it crashes for you and not for me? Perhaps should run under valgrind. -- ARTHUR: CHARGE! [The mighty ARMY charges. Thundering noise of feet....
68232
Nathan Hüsken
nathan.huesken@...
Feb 14, 2013 10:13 am
... That is correct. ... Ok, I have (line,col) but I convert it to byte offset using line2byte(line) + col. Unfortantly something does not work. The regex I...
68233
Christian Brabandt
cblists@...
Feb 14, 2013 11:54 am
Hi Bram! ... Anybody that uses such an option should be aware, that this can have consequences. So I would expect the first thing to do when one notices ...
68234
Christian Brabandt
cblists@...
Feb 14, 2013 12:28 pm
Hi Bram! ... No and it doesn't segfault, if I only let test87 run. Problem is, close_buffer() might close curbuf and curbuf can get freed(). Of course then you...
68235
François Ingelrest
francois.ingelrest@...
Feb 14, 2013 12:55 pm
... I think as well that such an option could be a good idea, not just for RE but for any bigger changes that strives to be eventually included into the main...
68236
Nathan Hüsken
nathan.huesken@...
Feb 14, 2013 1:18 pm
... Ok, you got me confused there. I thought col was supposed to be the byte offset in the buffer. Got it corrected and it works like a charm. Thanks! -- -- ...