Chris Jones wrote:
> Prettifying a color scheme, which looks like so:
>
> ------------------------------------------------------------------------
> 15 hi ErrorMsg       ctermfg=9       cterm=none ctermfg=red    etc...  
> 16 hi Visual              ctermbg=61  cterm=none ctermfg=bg    
> 17 hi VisualNOS           ctermbg=61  cterm=none ctermfg=bg   
> 18 hi Underlined     ctermfg=fg ctermbg=bg  term=underline   
> ------------------------------------------------------------------------
>
> I wanted to end up with this:
>
> ------------------------------------------------------------------------
> 15 hi ErrorMsg      ctermfg=9    cterm=none   ctermfg=red    
> 16 hi Visual        ctermbg=61   cterm=none   ctermfg=bg     
> 17 hi VisualNOS     ctermbg=61   cterm=none   ctermfg=bg    
> 18 hi Underlined    ctermfg=fg   ctermbg=bg   term=underline   
> ------------------------------------------------------------------------
>
> I gave the Align plugin a shot and eventually did the following:
>
> 15,18s/\ \ \+/@/g
> 15,18s/\ /@/g
> 15,18Align @
> 15,18s/@/\ /g
>
> Is there a more 'standard' way to do this?
>   

:help alignmap-tsp

might help.

Regards,
Chip Campbell

-- 
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php

Reply via email to