Re: Vim on Windows XP x64

2006-06-03 Thread Mathias Michaelis
Is someone working on integrating Microsoft Platform SDK / Visual C++ 2005? Yes, I do, and I already have sent some patches to this list. http://groups.yahoo.com/group/vimdev/message/43765 http://groups.yahoo.com/group/vimdev/message/43821 http://groups.yahoo.com/group/vimdev/message/43825

Re: MatchParen unreadable on dark backgrounds

2006-06-03 Thread Georg Dahn
I don't think any single colorscheme defines MatchParen. I haven't seen any single colorscheme that define MatchParen. Do they ? Of the color schemes, which are in the distribution, only koehler defines it. Of the others at vim.org, at least inkpot, xterm16, and my own color scheme (moria)

Re: Functions developed in 6.4, to be used in 7

2006-06-03 Thread Lukas Ruf
Charles E Campbell Jr [EMAIL PROTECTED] [2006-06-02 16:50]: thanks for answering! Lukas Ruf wrote: for the 6-series of Vim, I have been using a bunch of functions that greatly simplified my daily work. Unfortunately, they seem not to be available in my (Debian unstable) Vim 7

File open

2006-06-03 Thread Danny
Hi list, When I create a new file with Vim, how can I change the permissions to executable automatically. At the moment I have to create the file, exit vim, and then chmod 744. Thank You Danny

Re: Java indenting

2006-06-03 Thread Jeff Lanzarotta
Interesting... I thought at one point in time I had this working. Maybe in 6.4... I lost my original .vim files that did the java indention... --- Gerald Lai [EMAIL PROTECTED] wrote: On Fri, 2 Jun 2006, Jeff Lanzarotta wrote: Hello, I have a Java indenting questions. When editing C

Re: How to use map to exchange g and G keys?

2006-06-03 Thread Gerald Lai
On Fri, 2 Jun 2006, Steven Starr wrote: On Fri, 2 Jun 2006, Steven Starr wrote: I have been using vim since version 4, and never had this problem before. I have always (in VI before vim and thereafter) used the following to exchange the use of the g and G keys in my .vimrc file.

Re: File open

2006-06-03 Thread Yakov Lerner
On Sat, Jun 03, 2006 at 12:52:26PM +0200, Danny wrote: When I create a new file with Vim, how can I change the permissions to executable automatically. At the moment I have to create the file, exit vim, and then chmod 744. Here is what I use in my vimrc: au BufWritePost *.sh :exe silent

Re: Filter :map output

2006-06-03 Thread Yakov Lerner
On 6/1/06, Eric Leenman [EMAIL PROTECTED] wrote: Is it possible to filter the :map output? For example to only show the mappings that have CTRL or C- in it? You can try the 'ViewOutput' plugin that puts such things a bit easier. (http://www.vim.org/scripts/script.php?script_id=897) If you

quick math computations

2006-06-03 Thread stri ker
I frequently need to do some basic calculations. I have used the following within Vim for Integer calculations: :echo (4+7)*3-14 19 My question is this: Is there a way to do calculations with doubles instead of integers without piping to an external program like bc and then inserting into

Re: quick math computations

2006-06-03 Thread A.J.Mechelynck
stri ker wrote: I frequently need to do some basic calculations. I have used the following within Vim for Integer calculations: :echo (4+7)*3-14 19 My question is this: Is there a way to do calculations with doubles instead of integers without piping to an external program like bc and then

Re: quick math computations

2006-06-03 Thread François Pinard
[stri ker] I frequently need to do some basic calculations. [...] Is there a way to do calculations with doubles instead of integers without piping to an external program like bc and then inserting into a buffer? If you are lucky enough to have a Python-enabled Vim, you may use: :py