Re: any 'tagrelative' option for cscope?

2011-04-20 Thread pansz
On Wed, Apr 20, 2011 at 1:53 PM, Christian Brabandt cbli...@256bit.org wrote: Hi pansz! On Di, 19 Apr 2011, pansz wrote: By default, vim opens all file of ctags with directory relative to the tags file. This behaviour can be controlled by 'tagrelative' option. But for cscope, vim does not

Re: Adding Session Awareness to a Plugin

2011-04-20 Thread Mathew Brown
Hi Marc, Could you get into a little more detail? I don't really have any experience in writing a plugin. All I'm trying to do is patch one so that it is session aware. Thanks a lot. On Mon, 18 Apr 2011 23:28 +0200, Marc Weber marco-owe...@gmx.de wrote: There are alternatives: Use a

Re: Lost Blowfish Key

2011-04-20 Thread Mathew Brown
Hi Eric, Thanks a lot. I'll give it a try and hopefully can retrieve the file again :) On Mon, 18 Apr 2011 16:37 -0600, Erik Falor ewfa...@gmail.com wrote: On Mon, Apr 18, 2011 at 12:29:29PM -0700, Mathew Brown wrote: Hi, I had several files that were encrypted using the Blowfish

how to install Nerd tree plaugin/eom

2011-04-20 Thread vicky b
-- *Thanks Regards Vickyb * -- You received this message from the vim_use 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

Re: how to install Nerd tree plaugin/eom

2011-04-20 Thread vicky b
sorry to spam you i was able to do it. On Wed, Apr 20, 2011 at 12:22 PM, vicky b vickyb2...@gmail.com wrote: -- *Thanks Regards Vickyb * -- *Thanks Regards Vickyb * -- You received this message from the vim_use maillist. Do not top-post! Type your reply below the text you are

standard ubuntu lucid vim package is not +multibyte

2011-04-20 Thread Eric Smith
Why is this and how do I without having to compile, get back the mutibyte vim that I know and love in 7.3? -- - Eric Smith -- You received this message from the vim_use maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit

Re: standard ubuntu lucid vim package is not +multibyte

2011-04-20 Thread tux.
Eric Smith schrob am 20.04.2011 13:04: Why is this Because Dumbuntu sucks. and how do I without having to compile, get back the mutibyte vim that I know and love in 7.3? It won't work without compiling. -- You received this message from the vim_use maillist. Do not top-post! Type your

Re: standard ubuntu lucid vim package is not +multibyte

2011-04-20 Thread H Xu
On 04/20/2011 07:04 PM, Eric Smith wrote: Why is this and how do I without having to compile, get back the mutibyte vim that I know and love in 7.3? Post a message to the Ubuntu mailing list to ask them to do so. https://lists.ubuntu.com/ -- You received this message from the vim_use

Re: standard ubuntu lucid vim package is not +multibyte

2011-04-20 Thread Christian Brabandt
Hi Eric! On Mi, 20 Apr 2011, Eric Smith wrote: Why is this and how do I without having to compile, get back the mutibyte vim that I know and love in 7.3? What package have you installed? The normal package should be compiled with +multibyte. Make sure, you don't have the tiny package

Re: Lost Blowfish Key

2011-04-20 Thread Tim Chase
On 04/20/2011 01:50 AM, Mathew Brown wrote: Thanks a lot. I'll give it a try and hopefully can retrieve the file again :) $ for key in $(cat keys); do vim blowfish.txt --cmd set key=$key\ -c :set key= | saveas $key | q; done Just as a caveat, this will expose your passwords in the

Problems with my .vimrc

2011-04-20 Thread Tobias Lindgaard
My problem is that my keymappings doesn't seem to work. But that would not be particularly strange it only happens to some of them for instance I have changed ; to : in normal-mode and visual-mode but all that starts with either LEADER or ',' or '\' seems to be broken. my vimrc: silent! call

Re: Screenplay-Text Syntax File Misbehaving

2011-04-20 Thread Andy Wokula
Am 19.04.2011 10:59, schrieb Shlomi Fish: Hi all, I prepared a partial syntax file for Screenplay-Text here: http://svn.berlios.de/svnroot/repos/web-cpan/XML-Grammar-Fiction/trunk/vim It's attached to this message. You can learn more about Screenplay-Text here - http://xrl.us/bjswbo . Here

Re: Problems with my .vimrc

2011-04-20 Thread Ben Schmidt
nmap ,bn ESC:bnCR ... nnoremap : ; So first the nmap types Esc, but you are already in Normal mode, so Esc usually just beeps, which might abort the mapping; so that's not a good idea. Even if it does get past that, though, it then types : but : has been mapped to ; so instead of doing :bnCR

Re: Problems with my .vimrc

2011-04-20 Thread Ben Schmidt
On 20/04/11 11:49 PM, Ben Schmidt wrote: nmap ,bn ESC:bnCR ... nnoremap : ; So first the nmap types Esc, but you are already in Normal mode, so Esc usually just beeps, which might abort the mapping; so that's not a good idea. Even if it does get past that, though, it then types : but : has

Re: Problems with my .vimrc

2011-04-20 Thread Tobias Lindgaard
On Wed, Apr 20, 2011 at 3:52 PM, Ben Schmidt mail_ben_schm...@yahoo.com.au wrote: On 20/04/11 11:49 PM, Ben Schmidt wrote: nmap ,bn ESC:bnCR ... nnoremap : ; So first the nmap types Esc, but you are already in Normal mode, so Esc usually just beeps, which might abort the mapping; so

Re: Problems with my .vimrc

2011-04-20 Thread Tobias Lindgaard
It turns out that my mappings to change ; : aren't to clever so I just dump that. It destroys a lot of things with plugins who are giving keybindings.. So I just reverted that change On Wed, Apr 20, 2011 at 4:01 PM, Tobias Lindgaard tobias.priv...@gmail.com wrote: On Wed, Apr 20, 2011 at 3:52

Re: Problems with my .vimrc

2011-04-20 Thread ZyX
Reply to message «Re: Problems with my .vimrc», sent 18:07:39 20 April 2011, Wednesday by Tobias Lindgaard: It turns out that my mappings to change ; : aren't to clever so I just dump that. It destroys a lot of things with plugins who are giving keybindings.. So I just reverted that change

Re: Problems with my .vimrc

2011-04-20 Thread Tobias Lindgaard
Hmm it just seemed that lusty had such a problem. But i am not since sure about it. Anyway it is nice to have my own mappings working as expected. Den 20/04/2011 17.45 skrev ZyX zyx@gmail.com: Reply to message «Re: Problems with my .vimrc», sent 18:07:39 20 April 2011, Wednesday by Tobias

Re: Lost Blowfish Key

2011-04-20 Thread Mathew Brown
Thanks a lot Tim. On Wed, 20 Apr 2011 06:53 -0500, Tim Chase v...@tim.thechases.com wrote: On 04/20/2011 01:50 AM, Mathew Brown wrote: Thanks a lot. I'll give it a try and hopefully can retrieve the file again :) $ for key in $(cat keys); do vim blowfish.txt --cmd set key=$key\

scripting question

2011-04-20 Thread niva
Hi, I am writing a script and have to detect some features of the opened file. my vimscript contains a recursive conditional blocks if cond1 else if cond2 if condN etc... else endif endif I would like to replace that by an object approach but how can I do plaese ? I

Re: standard ubuntu lucid vim package is not +multibyte

2011-04-20 Thread Jeff Wheeler
On Wed, Apr 20, 2011 at 6:11 AM, tux. der_tux...@arcor.de wrote: Because Dumbuntu sucks. Did you seriously just say an entire OS sucks because an old version of the OS is shipping an old version of Vim? -- Jeff Wheeler Undergraduate, Electrical Engineering University of Illinois at

Re: scripting question

2011-04-20 Thread Tim Chase
On 04/20/2011 02:08 PM, niva wrote: Hi, I am writing a script and have to detect some features of the opened file. my vimscript contains a recursive conditional blocks if cond1 else if cond2 if condN etc... else endif endif I would like to replace that by an object

Re: standard ubuntu lucid vim package is not +multibyte

2011-04-20 Thread tux.
Jeff Wheeler schrob am 20.04.2011 21:20: Did you seriously just say an entire OS sucks because an old version of the OS is shipping an old version of Vim? Nope, it sucks generally. Ubuntu is like Debian's crippled half-brother. More security holes, more shiny ooohhh look what I can do!, less

Vimscript Question

2011-04-20 Thread niva
Hi, I am writing a vimscript that contains recursivecondition block. if cond1 else if cond2 else if condN else endif endif endif How canI code to avoidrecursive conditional block and have an object approach? Thank you -- You received this message from the

editing vim help files

2011-04-20 Thread Adam Monsen
Anyone handy with editing help files? I'm wondering how to align a title and tag, ala SPONSOR VIM DEVELOPMENT *sponsor* where the title is left-aligned and the tag right-aligned, on the same line. The vim (built-in) help files seem consistent enough, I'm

Re: Dvorak and hjkl

2011-04-20 Thread gonzih
i remap keys using that solution http://stackoverflow.com/questions/165231/vim-dvorak-keybindings-rebindings/165252#165252 but i still cant remap keys to switch between panes -- You received this message from the vim_use maillist. Do not top-post! Type your reply below the text you are replying

problems with using gundo

2011-04-20 Thread zidar
Hello, I have just started using vim, and I would really like give it a fair chance, since it sounds like an awesome editor. First thing i did was install python syntax highlighting, witch looked really nice. Then i tried installing gundo, and here is where my problems started. First thing i saw

Re: Screenplay-Text Syntax File Misbehaving

2011-04-20 Thread Shlomi Fish
Hi Andy, On Wednesday 20 Apr 2011 11:26:06 Andy Wokula wrote: Am 19.04.2011 10:59, schrieb Shlomi Fish: Hi all, I prepared a partial syntax file for Screenplay-Text here: http://svn.berlios.de/svnroot/repos/web-cpan/XML-Grammar-Fiction/trunk/vi m It's attached to this message.

Re: any 'tagrelative' option for cscope?

2011-04-20 Thread Raghavendra D Prabhu
* On Tue, Apr 19, 2011 at 08:18:07PM -0700, pansz pan.shi...@gmail.com wrote: By default, vim opens all file of ctags with directory relative to the tags file. This behaviour can be controlled by 'tagrelative' option. But for cscope, vim does not open file relative to directory where cscope.out

Re: Vimscript Question

2011-04-20 Thread Marc Weber
Excerpts from niva's message of Wed Apr 20 21:25:48 +0200 2011: Hi, I am writing a vimscript that contains recursivecondition block. if cond1 else if cond2 else if condN else endif endif endif How canI code to avoidrecursive conditional block

Re: standard ubuntu lucid vim package is not +multibyte

2011-04-20 Thread Adam Monsen
+multibyte Just a small nit: this should be +multi_byte. And there is no standard lucid vim package of Vim 7.3. Looks like only natty has Vim 7.3. See: http://packages.ubuntu.com/search?keywords=vim Looks like there is a backport in progress:

Re: Vimscript Question

2011-04-20 Thread Ben Fritz
On Apr 20, 2:25 pm, niva nivaem...@gmail.com wrote: Hi, I am writing a vimscript that contains recursivecondition block. What is a recursive condition block? Are you just looking for elseif? -- You received this message from the vim_use maillist. Do not top-post! Type your reply below

Re: Vimscript Question

2011-04-20 Thread Tim Chase
On 04/20/2011 06:15 PM, Marc Weber wrote: let conditions = [['a=7','echo 7'],['a=8','echo 8']] for [c,action] in conditions exec 'let c_result = '.action if c_result exec action I think, to mimic the OP's structure, you need a break in here endif unlet c, c_result, action

Re: problems with using gundo

2011-04-20 Thread Ben Fritz
On Apr 20, 9:53 am, zidar zidar...@gmail.com wrote: Hello, I have just started using vim, and I would really like give it a fair chance, since it sounds like an awesome editor. First thing i did was install python syntax highlighting, witch looked really nice. Then i tried installing

Re: editing vim help files

2011-04-20 Thread Tim Chase
On 04/20/2011 04:12 PM, Adam Monsen wrote: Anyone handy with editing help files? I'm wondering how to align a title and tag, ala SPONSOR VIM DEVELOPMENT *sponsor* where the title is left-aligned and the tag right-aligned, on the same line. While I

Re: problems with using gundo

2011-04-20 Thread Taylor Hedberg
Ben Fritz, Wed 2011-04-20 @ 17:26:49-0700: Not having used Pathogen, I don't know how to work installation using it. Pathogen creates a new directory bundle/ underneath your .vim/ directory. You then place the entire directory structure for a plugin in a subdirectory of bundle. For example:

Re: standard ubuntu lucid vim package is not +multibyte

2011-04-20 Thread pansz
On Wed, Apr 20, 2011 at 7:04 PM, Eric Smith e...@fruitcom.com wrote: Why is this and how do I without having to compile, get back the mutibyte vim that I know and love in 7.3? -- - Eric Smith The standard vim packged with Ubuntu Lucid DO have +multibyte. Just make sure you do really have