Re: why not remove www? Currently http://vim.org/ doesn't work

2011-04-10 Thread Tony Mechelynck
On 09/04/11 18:40, sal migondis wrote: I don't mind typing the extra www. but I tried this in seamonkey 2.0.13 (linux) and it just works. I don't remember changing these settings manually (under Edit-Preferences-Location Bar) but you can specify adding www and/or com when a web page is 'not

Re: Debug tutorial with examples?

2011-04-10 Thread Tony Mechelynck
On 10/04/11 04:21, Rostyslaw Lewyckyj wrote: Tony Mechelynck wrote: On 09/04/11 05:22, Rostyslaw Lewyckyj wrote: Would any of you be so kind as to send me pointers on where, online, I can find any tutorials on vim debug which contain full examples to illustrate what is sketched in :h? For

Re: Transfer of control, i.e. go to in a script

2011-04-10 Thread Tony Mechelynck
On 10/04/11 04:40, Rostyslaw Lewyckyj wrote: In a vim script of function what is the command to transfer execution control to a specific line/point in the script. I.e the equivalent of GOTO 100 ? There isn't. Vimscript is a structured language, which means that GOTO verbs are banned. You

Re: menu.vim overwritten

2011-04-10 Thread rameo
On Apr 9, 10:54 am, Andy Wokula anw...@yahoo.de wrote: Am 05.04.2011 16:59, schrieb rameo: Actually I use windows gvim 7.3 version. All my files and plugins are in my user directory vimfiles I noted that these 2 files has to be in the vim73 (program directory): - _vimrc - menu.vim

Re: Eliminating EOL in text files

2011-04-10 Thread Ben Schmidt
On 9/04/11 6:51 PM, Andy Wokula wrote: Am 16.12.2010 17:21, schrieb Tim Chase: On 12/16/2010 10:05 AM, Anthony Campbell wrote: That joins ALL the lines. What I need to do is to have each paragraph as a contimuous line, so that when I import the file into oowriter it will be easily editable.

Re: Path easy-search

2011-04-10 Thread Ben Schmidt
Heh, around 2007 I almost got a headache around this ... [...] What I have now in the vimrc: ono m //eCR xn script m //eSIDSelOffCR cno expr SIDSelOff sel==exclusive ? +1 : do the right thing after o_//e and . no script n //CRSIDHistDel no script N ??CRSIDHistDel sunm n|sunm N nn silent

Re: vmenu -- submenu

2011-04-10 Thread rameo
On Apr 4, 9:16 pm, Andy Wokula anw...@yahoo.de wrote: Am 04.04.2011 10:12, schrieb rameo: I noted a problem when using vmenu: I created this submenu: vnoremenusilent  96.447.10Sort.Swap\ Words.Swap\ 2\ words\ around\ another\ word\ vnoremenusilent  96.447.11Sort.Swap\ Words.Swap\ 4\

Filetype plugin text width

2011-04-10 Thread Tomasz Moskal
Hey, I seems to have a small issue with text width when filetype plugin is loaded. Let me explain: I'm reading now 'Zsh Guide' and use vim for taking notes and everything is working as it should when I stick to notes in plain English. As soon as I include any example of code vim is loading zsh/sh

Re: Filetype plugin text width

2011-04-10 Thread Gary Johnson
On 2011-04-10, Tomasz Moskal wrote: Hey, I seems to have a small issue with text width when filetype plugin is loaded. Let me explain: I'm reading now 'Zsh Guide' and use vim for taking notes and everything is working as it should when I stick to notes in plain English. As soon as I

some non-ASCII-only text transformations, TeX-related

2011-04-10 Thread Themis Kotsialos
Hello vim users From time to time I have stumbled upon the following situation: In some (non-ASCII-only) text files there are places where, e.g., I have to keep the single 1/2 character, (it may be best to leave it intact in a C comment), or it should be transformed to \frac{1}{2} (for

request to remove vim-on-rails group from mailing list info page

2011-04-10 Thread Adam Monsen
I found https://groups.google.com/forum/#!forum/vim-on-rails on http://www.vim.org/maillist.php . The vim-on-rails google group appears plagued with porn and/or spam. Will someone please remove the reference to it from http://www.vim.org/maillist.php ? It just makes vim.org look bad. And if the

Re: Filetype plugin text width

2011-04-10 Thread Tomasz Moskal
On 10 Apr, Gary Johnson wrote: On 2011-04-10, Tomasz Moskal wrote: Hey, I seems to have a small issue with text width when filetype plugin is loaded. Let me explain: I'm reading now 'Zsh Guide' and use vim for taking notes and everything is working as it should when I stick to notes in

Re: name conflicts: vim-addon-manager, snipmate

2011-04-10 Thread Adam Monsen
On 04/08/2011 10:10 AM, Marc Weber wrote: Changing the name would take several hours of work including finding many references on the web. Can we add a disambiguitation instead at a place you searched? IIRC, I just searched Google for vim snippets, and that led me to

Sharing images on mailing lists (was: why not remove www? Currently http://vim.org/ doesn't work)

2011-04-10 Thread Adam Monsen
On 04/08/2011 02:44 AM, Linda W wrote: I wish there was a way to post a screen shot. There are places online which host images for free. Seems like they are called image pastebins or photo pastbins. You can upload an image to one of these sites, then link to it in your post. * http://inky.ws *

vim addressing and command (syntax?)

2011-04-10 Thread Rostyslaw Lewyckyj
I am getting confused trying to understand vim line number addressing rules, and predicting accurately how commands will be parsed. Why is .+1 different from . + 1 and .-1 different from . - 1 For illustration compare (in some test file): :175 | echo line(.) | .+1 | echo line(.)and

Re: Inserting output of Ex command into buffer

2011-04-10 Thread Spiros Bousbouras
On Apr 9, 6:29 pm, Tim Chase v...@tim.thechases.com wrote: On 04/09/2011 12:11 PM, Spiros Bousbouras wrote: How can you insert the output of an Ex command into the buffer at the place where the cursor is ? Say for example in the 1st line here I want to insert right after you the output of

Re: vim addressing and command (syntax?)

2011-04-10 Thread Tim Chase
On 04/10/2011 05:27 PM, Rostyslaw Lewyckyj wrote: I am getting confused trying to understand vim line number addressing rules, and predicting accurately how commands will be parsed. Why is .+1 different from . + 1 and .-1 different from . - 1 For illustration compare (in some test file):

Re: Inserting output of Ex command into buffer

2011-04-10 Thread Tim Chase
On 04/10/2011 05:39 PM, Spiros Bousbouras wrote: On Apr 9, 6:29 pm, Tim Chasev...@tim.thechases.com wrote: On 04/09/2011 12:11 PM, Spiros Bousbouras wrote: How can you insert the output of an Ex command into the buffer at the place where the cursor is? 1) use :redir to a register and paste

Re: VIM + Web + Wysiwyg

2011-04-10 Thread Rich Healey
On Apr 5, 6:36 pm, Kerneels Roos kerne...@gmail.com wrote: On 4/5/2011 10:27 AM, Marc Weber wrote: Excerpts from henry's message of Tue Apr 05 03:49:40 +0200 2011: I intend to combine the functionalities of VIM, Web editors, and Wysiwyg. I'm not sure if there have been similar products. And

Re: Any non-programmer users of Vim here?

2011-04-10 Thread AK
On 04/07/2011 04:15 PM, Eric Weir wrote: I've downloaded and installed a copy of MacVim. I've peeked at a few of the help topics. [I'd like to run the tutorial, but haven't figured out how to do that, yet.] I'm not a programmer. Far from it. I'm intrigued for a least a couple reasons, the