Re: Vim wiki editable by git

2013-02-28 Thread Antony Scriven
On 24 February 2013 23:34, Marc Weber wrote: > As you all know I wrote VAM to solve a problem: Vim plugins > distribution. > > The Vim community suffers from a second problem: There > are many plugins - some are outdated - and its sometimes > hard to find the "jewels" - because they may be h

Re: netrw: unmark target directory for copy/move

2013-02-28 Thread Paul
On Feb 28, 3:58 pm, Charles Campbell wrote: > Paul wrote: >> In netrw, is there a way to unmark a targe directory for copy/move? >> The display of the target directory is taking up valuable real >> estate on the screen. Thanks. > > Try v147g of netrw from my > website:http://www.drchip.org/astron

Re: netrw: unmark target directory for copy/move

2013-02-28 Thread Charles Campbell
Paul wrote: In netrw, is there a way to unmark a targe directory for copy/move? The display of the target directory is taking up valuable real estate on the screen. Thanks. Try v147g of netrw from my website: http://www.drchip.org/astronaut/vim/index.html#NETRW . Seems to be something I'd ov

netrw: unmark target directory for copy/move

2013-02-28 Thread Paul
In netrw, is there a way to unmark a targe directory for copy/move? The display of the target directory is taking up valuable real estate on the screen. Thanks. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For

Re: vim edit help

2013-02-28 Thread Benji Fisher
First, the explanation. See the references that Ben Fritz already listed. /Array: Search for the text "Array". Do not type literally: it means hit Enter or Return. ciw: Change the word (text object). You could also use cw or ce (change word or change to end) dojox.collections.ArrayList: Th

Re: vim edit help

2013-02-28 Thread vicky b
actuall i have to 11 such variables can you please help var flightDelay = new Array("tvlPlyCp","tvlPlcyCertID","tvlShdIt","tvlConfArlSupId","tvlConfArlcompaid","tvlRepeei","tvlPolRep"); var baggageDelay = new Array("tvlPlyCp","tvlPlcyCertID","tvlShdIt","tvlProIr","tvlConfArlcompaid","tvlRepeei","t

Re: vim edit help

2013-02-28 Thread vicky b
Can you please explain more on this section /Array ciwdojox.collections.ArrayList On Fri, Mar 1, 2013 at 12:17 AM, Ben Fritz wrote: > On Thursday, February 28, 2013 12:33:23 PM UTC-6, vicky b wrote: > > HI All, > > > > > > I have text in below format > > var illness = new > Array("tvlPlyCp",

Re: vim edit help

2013-02-28 Thread Ben Fritz
On Thursday, February 28, 2013 12:33:23 PM UTC-6, vicky b wrote: > HI All, > > >  I have text in below format  > var illness = new > Array("tvlPlyCp","tvlPlcyCertID","tvlShdIt","tvlRepMedEi","tvlMdRp","tvlRrepdsc","tvlPolRep") > > > > > i need to convert it  > > > > var illness = new dojo

vim edit help

2013-02-28 Thread vicky b
HI All, I have text in below format var illness = new Array("tvlPlyCp","tvlPlcyCertID","tvlShdIt","tvlRepMedEi","tvlMdRp","tvlRrepdsc","tvlPolRep") i need to convert it var illness = new dojox.collections.ArrayList(); illness.add("tvlPlyCp"); illness.add("tvlPlcyCertID") illness.add("tvlShdIt")

Re: ctrlP to navigate arbitrary directory

2013-02-28 Thread Kent
thanks for the quick response. I did try .. and ../ but didn't try .. . :) So when CtrlP started, I can only stay at project directory. or ../../..//../ to root :) i think i have to get used to it if I use it. On Thu, Feb 28, 2013 at 3:42 PM, Benjamin R. Haskell wrote: > On Thu, 28

Re: ctrlP to navigate arbitrary directory

2013-02-28 Thread Benjamin R. Haskell
On Thu, 28 Feb 2013, Benjamin R. Haskell wrote: On Thu, 28 Feb 2013, Kent wrote: Hello, I use FuzzyFinder for years. Recently I heard a lot about CtrlP. And gave it a try. It does have some good features over FF. However one thing I didn't figure out, with FF(File search), I can type "/etc"

Re: ctrlP to navigate arbitrary directory

2013-02-28 Thread Benjamin R. Haskell
On Thu, 28 Feb 2013, Kent wrote: Hello, I use FuzzyFinder for years. Recently I heard a lot about CtrlP. And gave it a try. It does have some good features over FF. However one thing I didn't figure out, with FF(File search), I can type "/etc" to navigate to my root directory and do search, n

ctrlP to navigate arbitrary directory

2013-02-28 Thread Kent
Hello, I use FuzzyFinder for years. Recently I heard a lot about CtrlP. And gave it a try. It does have some good features over FF. However one thing I didn't figure out, with FF(File search), I can type "/etc" to navigate to my root directory and do search, no matter which directory I am in. How

Re: Search Patterns

2013-02-28 Thread Christian Brabandt
Hi Frédéric! On Do, 28 Feb 2013, Frédéric Heulin wrote: > As Christian suggested, removing the colors escaped sequences from the source > may be simplier. For grep, just append \ : cmd | \grep pattern > file It might be easier to set the grep alias apropriately. It sounds, the grep alias appe

Re: Search Patterns

2013-02-28 Thread Frédéric Heulin
John Lusby a écrit : >That worked almost perfectly. The only problem with this one is that >the >files that are in the working directory aren't proceeded by a slash. I >gather that the pattern you gave is for ^ followed by any number of non >/ >characters. I guess I got confused and thought th

Re: Syntax highlighting in vimdiff makes stuff unreadable (Linux xterm)

2013-02-28 Thread Kaushik Chug
This helps.. Thanks... -- -- 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 --- You received this message because you are subscribed to the Google Groups "v

Re: tab order

2013-02-28 Thread Shital
Here is what i'm using function! MoveCurrentTab(value) if a:value == 0 return endif let move = a:value - 1 let move_to = tabpagenr() + move if move_to < 0 let move_to = 0 endif exe 'tabmove '.move_to endfunction map :call MoveCurrentTab(-1) m