Re: Scheme is not Lisp (or ftplugin issues)

2012-01-09 Fir de Conversatie Axioplase
Hi, 2012/1/10 Sergey Khorev sergey.kho...@gmail.com: The fact that it is completely outdated, not actively maintained, and that the author belongs to a group that develops a full-fledged Scheme editor (namely Dr Racket, formerly Dr Scheme) makes me believe so. Your assumption is incorrect.

Re: Scheme is not Lisp (or ftplugin issues)

2012-01-08 Fir de Conversatie Axioplase
Hi, stanza, and its omission does not allow the user to prevent the loading of the extra lisp scripts through the intervention of their own ~/.vim/ftplugin/scheme.vim. I'm not familiar enough with either scheme or plain Lisp (Common Lisp?) to comment on whether the inclusion is appropriate.

Scheme is not Lisp (or ftplugin issues)

2012-01-06 Fir de Conversatie Axioplase
Hello, As a scheme and common lisp programmer, I have started using a very nice plugin recently, namely slimv (http://www.vim.org/scripts/script.php?script_id=2531). It currently has an issue which seems to be rooted in vim's defaut configuration : whenever a scheme file is loaded, the slimv's

Re: Proposal for adding binary AND and OR operators

2011-12-11 Fir de Conversatie Axioplase
A bitwise() function with an argument that specifies the operation will look a bit verbose: ... Especially when combined:   bitwise('invert', bitwise('and', bitwise('or', var, 0x01), 0x0f)) How about one function per operator: Indeed, it is verbose… But is it really problematic? Moreover,

Re: Proposal for adding binary AND and OR operators

2011-12-08 Fir de Conversatie Axioplase
Hello, 2011/12/9 David Larson da...@thesilverstream.com: Why not just add new keywords for these new operators? Like: if (bit_val and num) if (bit_val or num) if (bit_val xor num) I also believe that it is one of the least intrusive and most efficient way to add the bitwise

Re: foldmethod=syntax with Ruby slows Vim down tremendously

2011-11-10 Fir de Conversatie Axioplase
2011/11/10 Peter Odding pe...@peterodding.com: Like Ingo I'm sorry I can't get more specific, but that's kind of the problem: This issue is really hard to diagnose properly because it basically… seems like syntax folding has some horrible worst case performance which only shows once in a

Re: Vim build sometimes fails for unknown reason

2011-07-11 Fir de Conversatie Axioplase
Hi, 2011/7/11 ZyX zyx@gmail.com: While cross-compiling vim for target i686-mingw32 I sometimes encounter errors ... . These errors does not happen on second run or happen in other place. What does it mean and how can I fix it? Is your compilation serial, or do you have some parallel

Re: colorcolumn or cursorcolumn misaligned when using conceallevel=3

2011-06-30 Fir de Conversatie Axioplase
Hello, 2011/7/1 Dominique Pellé dominique.pe...@gmail.com: Which version of Vim are you using?  I'm using Vim-7.3.237 on Linux and it works fine for me.  I believe that the bug was fixed a long time ago in this checkins (in between beta releases 7.3a and 7.3b): Ah ? I think my last update

Re: colorcolumn or cursorcolumn misaligned when using conceallevel=3

2011-06-30 Fir de Conversatie Axioplase
See attached picture. Now with the picture… -- Français, English, 日本語, 한국어 -- 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, visit http://www.vim.org/maillist.php attachment: curcolfail.gif

Re: [conceal] Requests

2011-06-19 Fir de Conversatie Axioplase
Charles Campbell wrote: Hello, Hello, If I may ask, how did you find out about it?  I suspect that there's a lot of LaTeX users out there that would like to use the conceal feature but don't know about it. I found out by some random walk on vim related websites the address

Re: Requests

2011-06-14 Fir de Conversatie Axioplase
Hello, 2011/6/14 Ben Fritz fritzophre...@gmail.com: Am I correct in my understanding, that your file .vim/after/syntax/ tex.vim, has a line like: let g:tex_conceal='agm' ? If so, then your problem is in assuming the g:tex_conceal option works like built-in Vim options like 'wrap' or

Re: [conceal] Requests

2011-06-14 Fir de Conversatie Axioplase
2011/6/13 Christian Brabandt cbli...@256bit.org: Hi Adrien! Hello Christian, On Mo, 13 Jun 2011, Adrien Axioplase Piérard wrote: 1/ It is very annoying that when one is moving in a concealed line, motions consider the underlying text rather that what can be seen. I started working

[conceal] Requests

2011-06-12 Fir de Conversatie Axioplase
Hello everyone, I have been using the conceal feature extensively since I discovered it a week ago or so. I would like to express some regrets regarding this extremely useful feature, and thus plea for some enhancements, should anyone capable of coding them read this. 1/ It is very annoying that

Re: all I want to do is save a file!

2011-06-09 Fir de Conversatie Axioplase
2011/6/9 urbanpcguru urbanpcg...@gmail.com: I can open vim with sudo vim /etc/hosts  for example..  But how do I save and close it? The same way you close it when you run it without sudo!  I can't seem to find the answer to this anywhere!? Most people here did find the answer somewhere.  

Re: Dear Bram

2011-02-17 Fir de Conversatie Axioplase
It's not just the input queue that's in question here, it's everywhere in Vim where keypresses are represented. And I'm sure there are plenty more subtleties. What I see here, if done, is a potential new major version of vim. Such a new version may trade off backward compatibility for

Request: colors in :digraphs

2011-01-06 Fir de Conversatie Axioplase
Hello, I happen to use :digraphs quite a lot to insert mathematical symbols in documents. However, finding the characters and their input sequence is *very* straining for the eyes. I wonder whether each of the three columns output by :dig could be coloured to help reading? Also, it may help *a

Ambiguous use of preceded with a backslash in help

2010-08-24 Fir de Conversatie Axioplase
The help for langmap states Special characters need to be preceded with a backslash. These are ;, ',' and backslash itself. It means that we have to escape the backslash and write something like :set langmap=\\;k The help for option-backslash states To include white space in

Re: [BUG] Being provided some equal recursive structures, equality operator never stops comparison

2010-08-23 Fir de Conversatie Axioplase
If I am not mistaking, ... means ``I already displayed this structure, so I do not want to display it for the second time''. Example:    :let d={}    :let l=[d, d]    :echo l    [{}, {...}] This makes possible echoing recursive data structures, like the one that causes In such a case,