Re: Abbreviations using special chars

2011-07-11 Thread Thilo Six
Nathan Neff wrote the following on 12.07.2011 07:16 Hello -- -- > iabbrev What am I doing wrong? > > Thanks, > --Nate HTH -- bye Thilo 4096R/0xC70B1A8F 721B 1BA0 095C 1ABA 3FC6 7C18 89A4 A2A0 C70B 1A8F -- You received this message from the "vim_use" maillist. Do not top-post! Type your

Re: vim input command line

2011-07-11 Thread Christian Brabandt
On Tue, July 12, 2011 5:03 am, rudy b wrote: > function! SelectBeam() > call inputsave() > let name = input('Enter Beam #: ') > call inputrestore() > :g!/execute . name/d exe ':g!/' . escape(name, '/') . '/d/' > endfunction > regards, Christian -- You received this message from the

Abbreviations using special chars

2011-07-11 Thread Nathan Neff
Hello, I'd like to abbreviate this: http://www.vim.org/maillist.php

vim input command line

2011-07-11 Thread rudy b
Hi everyone, I am trying to write a simple vim script that takes an "input" from a command line, and sets it to a variable, and then use that variable throughout my script. For example, I am trying to type something in the command line, and take that and set it to a variable (in this case "name"),

Re: Portable vim for solaris

2011-07-11 Thread Gary Johnson
On 2011-07-11, Dominique Pellé wrote: > Teggy V wrote: > > > Hi there, > > I am a great fan of vim; be it on windows or linux or other unix boxes. > > One issue though which I often have, specially on solaris servers, is that I > > can't install vim since I don't have root rights to install vim i

Re: Help Bugs under seven

2011-07-11 Thread niva
On 11 juil, 21:48, Bram Moolenaar wrote: > Tony Mechelynck wrote: > > On 10/07/11 14:50, niva wrote: > > > Hi, > > > > I recently install Vim 7.3 under win seven and I got some errors when > > > I navigate through vim's help system. > > > > "pattern.txt" [RO] 1289L, 54946C > > > Erreur d tect e

Re: Help Bugs under seven

2011-07-11 Thread Bram Moolenaar
Tony Mechelynck wrote: > On 10/07/11 14:50, niva wrote: > > Hi, > > > > I recently install Vim 7.3 under win seven and I got some errors when > > I navigate through vim's help system. > > > > > > "pattern.txt" [RO] 1289L, 54946C > > Erreur détectée en traitant C:\Program Files (x86)\Vim\vim73\ftp

Re: Portable vim for solaris

2011-07-11 Thread Dominique Pellé
Teggy V wrote: > Hi there, > I am a great fan of vim; be it on windows or linux or other unix boxes. > One issue though which I often have, specially on solaris servers, is that I > can't install vim since I don't have root rights to install vim in /usr or > /usr/local. ...snip... You don't need

Re: Portable vim for solaris

2011-07-11 Thread Jerry
Hi, you can try install a pre-compiled executable for solaris. Rest assured it is a legit website, although it looks ugly as hell. :) http://sunfreeware.com/programlistsparc10.html#vim On Jul 11, 3:44 am, Teggy V wrote: > Hi there, > > I am a great fan of vim; be it on windows or linux or other

Re: vim map key can not work

2011-07-11 Thread Ben Fritz
On Jul 11, 9:12 am, ZyX wrote: > Reply to message «Re: vim map key can not work», > sent 11:13:00 11 July 2011, Monday > by pelican: > > Sorry for my indistinction on this issue. > > Simply what I do is mapping key F5 to 'set nowrap', so I added in > > my .vimrc 'map :set nowrap', but when I pre

Re: vim map key can not work

2011-07-11 Thread Bee
On Jul 11, 12:13 am, pelican wrote: > Sorry for my indistinction on this issue. > Simply what I do is mapping key F5 to 'set nowrap', so I added in > my .vimrc 'map :set nowrap', but when I press F5 in vim, it > just came out <80>k5 on the bottom of vim screen, I don't how to fix. > I need your

omni and OpenFOAM

2011-07-11 Thread AlmostSurelyRob
Dear All, I would appreciate if you could help me with a proper set-up of a syntax completion for an external library. Following these instructions http://vim.wikia.com/wiki/VimTip1608 I was able to bring omni functionality to my cpp code. So now whenever I type say: std::list *l

Portable vim for solaris

2011-07-11 Thread Teggy V
Hi there, I am a great fan of vim; be it on windows or linux or other unix boxes. One issue though which I often have, specially on solaris servers, is that I can't install vim since I don't have root rights to install vim in /usr or /usr/local. One would suggest compiling vim from source and to

omni and OpenFOAM

2011-07-11 Thread AlmostSurelyRob
Dear All, I would appreciate if you could help me set-up omni for an external C++ library. Following these instructions http://vim.wikia.com/wiki/VimTip1608 I was able to bring omni functionality to my cpp code. So now whenever I type say: std::list *lst lst ->...

Re: vim map key can not work

2011-07-11 Thread ZyX
Reply to message «Re: vim map key can not work», sent 11:13:00 11 July 2011, Monday by pelican: Yes, with partially pressed mapping it does show <80>k5. You should write nnoremap :set nowrap (with space). `n' is here because you don't need this mapping for operator- pending and visual modes.

Re: Changing elements of a color scheme

2011-07-11 Thread Charles Campbell
Benjamin R. Haskell wrote: On Sat, 9 Jul 2011, Charles E Campbell Jr wrote: Benjamin R. Haskell wrote: Dr. Chip, if you have access to put an .htaccess file in that directory, you can correct the first problem with this line: AddType text/x-vimball .vba I've loaded that a file with that l

Re: vim map key can not work

2011-07-11 Thread sc
On Monday, July 11, 2011 02:13:00 pelican wrote: > Sorry for my indistinction on this issue. > Simply what I do is mapping key F5 to 'set nowrap', so I added > in my .vimrc 'map :set nowrap', but when I press F5 really? with no space after the first '>'??? personally, i want to switch between w

Re: vim map key can not work

2011-07-11 Thread pelican
Sorry for my indistinction on this issue. Simply what I do is mapping key F5 to 'set nowrap', so I added in my .vimrc 'map :set nowrap', but when I press F5 in vim, it just came out <80>k5 on the bottom of vim screen, I don't how to fix. I need your help! Thanks vary much! On Jul 10, 7:09 pm, ZyX