Patch 7.3.532 Problem: Compiler warning from Clang. Solution: Use a different way to point inside a string. (Dominique Pelle) Files: src/syntax.c ... ...
65342
Bram Moolenaar
Bram@...
Jun 1, 2012 11:19 am
... Thanks! -- The goal of science is to build better mousetraps. The goal of nature is to build better mice. /// Bram Moolenaar -- Bram@... --...
65343
Bram Moolenaar
Bram@...
Jun 1, 2012 11:19 am
... Nice that the clang warning includes the solution. I'll include the fix, thanks. -- hundred-and-one symptoms of being an internet addict: 7. You finally...
65344
Bram Moolenaar
Bram@...
Jun 1, 2012 11:47 am
... Thanks! -- hundred-and-one symptoms of being an internet addict: 9. All your daydreaming is preoccupied with getting a faster connection to the net:...
... I'll add it to the todo list. -- hundred-and-one symptoms of being an internet addict: 10. And even your night dreams are in HTML. /// Bram Moolenaar --...
65347
Bram Moolenaar
Bram@...
Jun 1, 2012 12:58 pm
Patch 7.3.534 (after 7.3.461) Problem: When using an InsertCharPre autocommand autoindent fails. Solution: Proper handling of v:char. (Alexey Radkov) ...
65348
Bram Moolenaar
Bram@...
Jun 1, 2012 1:21 pm
Patch 7.3.535 Problem: Many #ifdefs for MB_MAXBYTES. Solution: Also define MB_MAXBYTES without the +multi_byte feature. Fix places where the buffer...
65349
Axel
axel.bender@...
Jun 1, 2012 1:24 pm
Thanks! -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information,...
65350
Alexey Radkov
alexey.radkov@...
Jun 1, 2012 1:35 pm
Thank you! After patch 7.3.534 it works fine. Cheers, Alexey. 2012/5/29 Alexey Radkov <alexey.radkov@...> ... -- You received this message from the...
65351
Bram Moolenaar
Bram@...
Jun 1, 2012 2:27 pm
... Well, I think plugins should be able to handle file names with spaces, as they occur quite frequently on MS-Windows. When I look at the documentation for...
65352
Ingo Karkat
swdev@...
Jun 1, 2012 3:35 pm
Hello Vim developers, ... I found a small discrepancy while developing a custom mapping: vim -N -u NONE ifoo<Esc> ... 'foo' [0, 1, 1, 0] [0, 1, 4, 0] i<Esc> ...
65353
Bram Moolenaar
Bram@...
Jun 1, 2012 3:47 pm
Patch 7.3.536 Problem: When spell checking the German sharp s is not seen as a word character. (Aexl Bender) Solution: In utf_islower() return true for...
65354
Bram Moolenaar
Bram@...
Jun 1, 2012 3:50 pm
Patch 7.3.537 Problem: Unecessary call to init_spell_chartab(). Solution: Delete the call. Files: src/spell.c ... *************** *** 4721,4728 **** ...
65355
Bram Moolenaar
Bram@...
Jun 1, 2012 4:35 pm
Patch 7.3.538 Problem: 'efm' does not handle Tabs in pointer lines. Solution: Add Tab support. Improve tests. (Lech Lorens) Files: src/quickfix.c,...
65356
tux.
zeug@...
Jun 1, 2012 4:37 pm
... There is an upper-cased sharp s in German. It just looks different. -- You received this message from the "vim_dev" maillist. Do not top-post! Type your...
65357
Bram Moolenaar
Bram@...
Jun 1, 2012 4:53 pm
... Mostly SS is used for the upper case version, if at all. The uppser-case sharp s is not in latin1. Wikipedia: ß is nearly unique among the letters of...
65358
Bram Moolenaar
Bram@...
Jun 1, 2012 4:53 pm
... Well, why does the difference matter? It won't be easy to change. -- hundred-and-one symptoms of being an internet addict: 19. All of your friends have an...
65359
Ingo Karkat
swdev@...
Jun 1, 2012 7:11 pm
... From a mapping, I set up an autocmd that triggers on InsertLeave, then start inserting. In the autocmd, I check for actual text entry by comparing register...
65360
Tony Mechelynck
antoine.mechelynck@...
Jun 2, 2012 2:48 am
... Yes, usually ß → SS when converting a word to all-caps. The problem of course is that this operation is not reversible, except in de-CH, where ss is...
65361
char101
peacech@...
Jun 2, 2012 8:55 am
Hi, Lately I have been getting rather frequent crash with gvim. It seems to happen randomly. I do have a debug info of the crash. Unfortunately I cannot find...
65362
Christian Brabandt
cblists@...
Jun 2, 2012 12:05 pm
Hi char101! ... My guess is, that the alloc failed and returned NULL. Perhaps this patch helps to avoid it: diff --git a/src/eval.c b/src/eval.c ... +++...
65363
Dominique Pellé
dominique.pelle@...
Jun 2, 2012 12:15 pm
... Which version of Vim are you using? (output of :version) Several patches since official version 7.3 fix crashes. Latest version is Vim-7.3.538. Regards --...
65364
Christian Brabandt
cblists@...
Jun 2, 2012 1:04 pm
... One more update: - Replace should work better now (and works like in the current version of Gvim). - When using REPLACE, the cursor is positioned at the...
65365
Ken Takata
kentkt@...
Jun 2, 2012 11:45 pm
Hi Attached patch fixes some glitches in Vim doc. 1. Fix a 404 link. 2. Fix a typo. ("16 dots" -> "14 dots") 3. The tag *g:vimsyn_noerror* was missing because...
65366
Ken Takata
kentkt@...
Jun 2, 2012 11:46 pm
Hi Columns in Vim's doc seem to be aligned with :set conceallevel=0, but :set conceallevel=2 is the default now. Attached patch will align columns with both...
65367
char101
peacech@...
Jun 3, 2012 1:52 am
... Thank you for the patch Christian. I will try to apply it and see if any memory allocation error message pop up. If the alloc failed, then there could be...
65368
char101
peacech@...
Jun 3, 2012 1:56 am
... Hi, I am using the latest version. But the random crash happens since several months ago. I don't remember exactly when since it happens randomly. I am...
65369
char101
peacech@...
Jun 3, 2012 2:34 am
... [DELETE] Could this be the cause Quote from http://msdn.microsoft.com/en-us/library/windows/desktop/aa366586%28v=vs.85%29.aspx ... On computers with more...
... Hi Ken I don't think that we should apply this patch, it mixes spaces an tabs. So your patch makes it aligned with conceal feature, but misaligned without...