... This is what seems to happen with the latest patched Vim. I think it's a little confusing that [count]v does one thing if you haven't ever acted on a...
65318
guotuofeng@...
May 28, 2012 7:03 am
... The startup time of gvim on my Windows 7 is very slow at the first time after sync this change. After some investigation, I found that my Anti-virus...
... [...snip...] ... "Attack-able" code in this change? It looks to me that your anti-virus is reporting a false alert here. The bug should be reported to...
65320
Alexey Radkov
alexey.radkov@...
May 28, 2012 7:40 am
It is simple. Open some C/C++ code in vim (after patch 461), then ... write something like int a() { Now after you insert <CR> '{' must move to the left as you...
... Hi, Dominique Thanks for you reply. You might be correct and I think I need try other anti-virus software in order to repro this issue. I am just curious...
65322
Gary Johnson
garyjohn@...
May 28, 2012 8:17 am
In light of the discussion in the "Folding on markdown" thread in the vim_use list and the confusion over the conditions under which the BufRead event is used,...
65323
Bram Moolenaar
Bram@...
May 28, 2012 12:09 pm
... Yasuhiro, can you reproduce this? -- login: yes password: I don't know, please tell me password is incorrect login: yes password: incorrect /// Bram...
65324
Alexey Radkov
alexey.radkov@...
May 28, 2012 6:25 pm
Just found that automatic line break when textwidth is set is also broken. 2012/5/28 Bram Moolenaar <Bram@...> ... -- You received this message from...
65325
Alexey Radkov
alexey.radkov@...
May 28, 2012 7:44 pm
I found a better solution. The problematic piece in edit() is if (!p_paste) { /* Trigger InsertCharPre. */ char_u *str = do_insert_char_pre(c); char_u *p; if...
65326
Alexey Radkov
alexey.radkov@...
May 29, 2012 6:44 am
Btw it is expensive to allocate memory for 'char_u* old' in the latest patch. Instead it makes sense to do something like in eval.c in function ...
65327
Alexey Radkov
alexey.radkov@...
May 29, 2012 7:10 am
Here is variant with buffer allocated on stack (patch attached): static char_u * do_insert_char_pre(c) int c; { char_u *res = NULL; #ifdef FEAT_MBYTE char_u...
65328
Gary Johnson
garyjohn@...
May 29, 2012 7:19 am
... Thanks! That seems to be working pretty well with C and VimL. Regards, Gary -- You received this message from the "vim_dev" maillist. Do not top-post!...
65329
Cesar Romani
cesar.romani@...
May 29, 2012 3:03 pm
By compiling vim 7.3.531 with the the latest Racket 5.2 on Windows 7 ... if_mzsch.c:806:4: error: #error Precise GC v.4+ or Racket with futures/places do not...
65330
Sergey Khorev
sergey.khorev@...
May 29, 2012 4:26 pm
... Also you need to set MZSCHEME_GENERATE_BASE=yes but that would not work without some patching of Racket headers. I recommend you use MSVC instead of MinGW....
65331
Cesar Romani
cesar.romani@...
May 29, 2012 7:37 pm
... Thanks but I get the same error. As you said I'd need a patch for the Racket headers. I added # include <stdint.h> to if_mzsch.h, because without it I was ...
65332
mattn
mattn.jp@...
May 30, 2012 1:18 am
... Sorry for delay. https://gist.github.com/2832022 I wonder whether we should change :p behavior. I'm thinking there are some cases to use "8.3". For...
65333
Christian Brabandt
cblists@...
May 31, 2012 8:02 am
... I can reproduce the issue with this simple mapping: inoremap <Esc> <Esc> This breaks the cursor keys in terminal vim. regards, Christian -- You received...
65334
Axel
axel.bender@...
May 31, 2012 10:34 am
The -R flag is not honored when there is already an instance of vim open; try: gvim <file_a> [creating the default remote server] gvim -R...
65335
stevenfrog
stevenfrog@...
May 31, 2012 2:52 pm
I use taglist() to get a tag list. Then I did some filter, just leave some useful one like this: let tttlist = taglist("^List$") "echo ttt let newtttlist = [] ...
65336
Alex Efros
powerman@...
May 31, 2012 4:14 pm
Hi! 1) Why default &path contain /usr/include? I suppose this is compatibility/historical issue, but maybe this can be safely moved to ftplugin/c instead of...
Hi The following command shows a memory leak when writing the undo file with ACL in Vim-7.3.531 (Linux x86). $ valgrind --leak-check=yes ./vim -u NONE \ -c...
Hi clang-3.1 gives the following compilation warning with vim-7.3.351: =========================================== syntax.c:9479:46: warning: adding 'int' to a...
Hi Attached patch fixes a few minor glitches in Vim's doc. Regards -- Dominique -- You received this message from the "vim_dev" maillist. Do not top-post! Type...
65340
John Marriott
basilisk@...
May 31, 2012 8:26 pm
On 26-May-2012 2:25 AM, Dominique Pell wrote: John Marriott <basilisk@...> wrote: On 25-May-2012 7:56 PM, Bram Moolenaar wrote: Patch 7.3.527 ...
65341
Bram Moolenaar
Bram@...
Jun 1, 2012 11:19 am
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 --...