Re: Linux shell command line editing/movement

2013-05-21 Thread Willy Gfn
David Sanson wrote: > It is called "vi mode". Assuming you are using bash, > https://www.google.com/search?q=+vi+mode+bash You can also use the vi editing mode for every CLI input (readline, smbclient, mysql, ...) ! >> http://ss64.com/bash/syntax-inputrc.html It works with every application using

RE: Linux shell command line editing/movement

2013-05-21 Thread Paul
Excellent , thanks -Original Message- From: vim_use@googlegroups.com [mailto:vim_use@googlegroups.com] On Behalf Of David Sanson Sent: May-21-13 11:26 PM To: vim_use@googlegroups.com Subject: Linux shell command line editing/movement It is called "vi mode". Assuming you are using bash, ht

Linux shell command line editing/movement

2013-05-21 Thread David Sanson
It is called "vi mode". Assuming you are using bash, https://www.google.com/search?q=+vi+mode+bash -- -- 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 ---

Linux shell command line editing/movement

2013-05-21 Thread Paul
Is there a plugin that changes shell command line movement and editing to those used in vim? For example, instead of ^a, be able to use 0; or instead of ^e be able to use $. Thanks Paul -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below

Re: Fortran comments not continued

2013-05-21 Thread Nicolas Bock
They were set to formatoptions=tcql I added 'ro' now, and it works. Beautiful! Thanks so much for your help, nick On Tue, May 21, 2013 at 3:38 PM, Ben Fritz wrote: > On Tuesday, May 21, 2013 11:24:00 AM UTC-5, Nicolas Bock wrote: > > Hi, > > > > When editing Fortran I > > > > set comments=s

Re: Fortran comments not continued

2013-05-21 Thread Ben Fritz
On Tuesday, May 21, 2013 11:24:00 AM UTC-5, Nicolas Bock wrote: > Hi, > > When editing Fortran I > > set comments=s:!>,m:!!,e:!!,:! > > unfortunately, vim refuses to print the middle comment leader '!!' when I > start a comment with '!>' or a simple '!' continuing a comment started with > '!'.

Re: kubuntu 13.04 green has changed

2013-05-21 Thread Christian Brabandt
Hi John! On So, 19 Mai 2013, John Little wrote: > On Monday, May 20, 2013 2:29:32 PM UTC+12, pansz wrote: > > So you should mail to ubuntu group instead? (rgb.txt does not belong to > > kubuntu so you should ask ubuntu devs for that, or fire a bug on > > launchpad.net) > > I'm thinking surely

Re: how to set quickfix to get tags infomation

2013-05-21 Thread Ben Fritz
On Tuesday, May 21, 2013 11:33:34 AM UTC-5, Yegappan wrote: > Hi, > > > > On Tue, May 21, 2013 at 1:53 AM, Steve liu wrote: > > > I'm enable ctags. > > > > > > And if a lot of tags is matching when I stroke Ctrl+]. Some info will be > > > shown. > > > I want those info goes into quickfix w

Fortran comments not continued

2013-05-21 Thread Nicolas Bock
Hi, When editing Fortran I set comments=s:!>,m:!!,e:!!,:! unfortunately, vim refuses to print the middle comment leader '!!' when I start a comment with '!>' or a simple '!' continuing a comment started with '!'. I don't understand why. Thanks already, nick -- -- You received this message

vim taking focus

2013-05-21 Thread shawn wilson
This happens on quite a few linux windows managers but I'm not discounting something outside of vim being at fault here - vim is the only place I've experienced this. I have a gvim session with: gvim --servername $USER and then I load new files with: vim --servername $USER and gvim will pop up int

Re: how to set quickfix to get tags infomation

2013-05-21 Thread Yegappan Lakshmanan
Hi, On Tue, May 21, 2013 at 1:53 AM, Steve liu wrote: > I'm enable ctags. > > And if a lot of tags is matching when I stroke Ctrl+]. Some info will be > shown. > I want those info goes into quickfix window. > > how to do that. > You can use the ":ltag " command to add all the matching tags to th

Re: how to set quickfix to get tags infomation

2013-05-21 Thread Steve liu
what I want is going in to the function and then has the ability to get out of it. so tags is good. But no quickfix When there are a lot of matches. cscope will put all the info to the quickfix, which is good for me, but seems no something like tag stack to get in the function and get out. ( I ha

Re: how to set omnifunc to at least 2 functions

2013-05-21 Thread Steve liu
Well, I see thanks On Tue, May 21, 2013 at 10:32 PM, Ben Fritz wrote: > On Tuesday, May 21, 2013 1:56:50 AM UTC-5, Steve liu wrote: > > Hi all > > > > I want to set omnifunc to at least 2 functions. > > e.g. set omnifunc=ccomplete#Complete,syntaxcomplete#Complete > > > > but the syntax is not c

Re: how to debug file type recognition

2013-05-21 Thread Christian Brabandt
On Tue, May 21, 2013 12:52, Matteo Cavalleri wrote: > i have two identical smarty files: i load the first one and it gets > recognized as "heist". i load the second one and it gets correclty > recognized as smarty... how can that happen? > > if i start vim with "vim -u NONE -U NONE" and give the co

Re: how to debug file type recognition

2013-05-21 Thread Ben Fritz
On Tuesday, May 21, 2013 5:52:03 AM UTC-5, Matteo Cavalleri wrote: > i have two identical smarty files: Content is identical? Or file name/extension? Or both? -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For m

Re: how to set quickfix to get tags infomation

2013-05-21 Thread Ben Fritz
On Tuesday, May 21, 2013 3:53:11 AM UTC-5, Steve liu wrote: > I'm enable ctags. > > And if a lot of tags is matching when I stroke Ctrl+]. Some info will be > shown. > I want those info goes into quickfix window. > > > how to do that. > There is no built-in way. But you can get a list of

Re: how to debug file type recognition

2013-05-21 Thread tooth pik
On Tue, May 21, 2013 at 03:52:03AM -0700, Matteo Cavalleri wrote: > i have two identical smarty files: i load the first one and it gets > recognized as "heist". i load the second one and it gets correclty > recognized as smarty... how can that happen? > if i start vim with "vim -u NONE -U NONE" an

Re: how to set omnifunc to at least 2 functions

2013-05-21 Thread Ben Fritz
On Tuesday, May 21, 2013 1:56:50 AM UTC-5, Steve liu wrote: > Hi all > > I want to set omnifunc to at least 2 functions. > e.g. set omnifunc=ccomplete#Complete,syntaxcomplete#Complete > > but the syntax is not correct here. > > > could you pls help to tell me this? > > I tried these 2 >

Aw: Plans for Vim 7.4

2013-05-21 Thread Klaus Rudolph
> > Hello Vim users, > > We are now at patch level 7.3.931. In a few weeks we would reach 999. I > don't want to find out what happens if we go over that, so it's time for > Vim 7.4! > > The top five of the voting list: > http://www.vim.org/sponsor/vote_results.php > > 1. add IDE features > 2

how to debug file type recognition

2013-05-21 Thread Matteo Cavalleri
i have two identical smarty files: i load the first one and it gets recognized as "heist". i load the second one and it gets correclty recognized as smarty... how can that happen? if i start vim with "vim -u NONE -U NONE" and give the commands ":set nocompatible" and ":syntax on", the files are

Re: Plans for Vim 7.4

2013-05-21 Thread Bram Moolenaar
Ron Aaron wrote: > I know it's late to vote, but some sort of sane 'gdb' integration would > be supremely useful. I haven't found any packages for this that don't > involve a lot of setup. There are several implementations, including my own "Agide". Pick one that is the best and improve it... M

how to set quickfix to get tags infomation

2013-05-21 Thread Steve liu
I'm enable ctags. And if a lot of tags is matching when I stroke Ctrl+]. Some info will be shown. I want those info goes into quickfix window. how to do that. thanks -- steve -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you

Cross platform vim script development

2013-05-21 Thread Alberto Miorin
Hi all! If you need to test your vim script in Microsoft Windows 8, I've written an article on my experience for OSX/Linux vim users. https://news.ycombinator.com/item?id=5742342 Best regards Alberto Miorin -- -- You received this message from the "vim_use" maillist. Do not top-post! Type yo