Wiki

Changes between Version 6 and Version 7 of VimSupport

Show
Ignore:
Timestamp:
07/02/12 22:03:24 (12 years ago)
Author:
nerdzero
Comment:

Point to updated mercurial repo

Legend:

Unmodified
Added
Removed
Modified
  • VimSupport

    v6 v7  
    11= Vim Cobra Support = 
    22== Single User == 
    3 Change to home directory 
     3Change to your home directory 
    44{{{ 
    55cd $HOME 
     
    88Get the most recent updates from the Mercurial repository via a clone 
    99{{{ 
    10 hg clone http://bitbucket.org/webnov8/cobra-on-vim/ cobra-vim 
     10hg clone http://bitbucket.org/ramonrocha/cobra-on-vim/ cobra-vim 
    1111}}} 
    1212 
    13 For *.zip, *.gz, and *.bz2 archives download the file from [http://bitbucket.org/webnov8/cobra-on-vim/] 
     13For *.zip, *.gz, and *.bz2 archives download the file from [http://bitbucket.org/ramonrocha/cobra-on-vim/] 
    1414 
    1515Create a  ''.vim'' directory if one isn't already present 
     
    1818}}} 
    1919 
    20 Then copy the three folders (indent, ftdetect, syntax) from cobra-vim into the .vim directory: 
     20Then copy the four folders (colors, indent, ftdetect, syntax) from cobra-vim into the .vim directory: 
    2121{{{ 
    2222cp -r cobra-vim/* .vim 
     
    2525Open or create a file with a '''.cobra''' extension and you will have highlighting and indentation for Cobra 
    2626 
     27If you use a dark background, you can try the cobra color scheme. 
     28{{{ 
     29:colorscheme cobra 
     30}}} 
     31 
     32If you use a light background, you can try the cobralight color scheme instead. 
     33{{{ 
     34:colorscheme cobralight 
     35}}} 
     36 
     37Add either of the previous commands to your ''.vimrc'' file in your home directory to make the change permanent. 
     38 
     39To change back to the default color scheme, execute: 
     40{{{ 
     41:colorscheme default 
     42}}} 
     43 
    2744== All Users == 
    28 For all users use your system admin privileges to copy the ''indent/cobra.vim'', ''ftdetect/cobra.vim'', and ''syntax/cobra.vim'' into Vim's ''indent'', ''ftdetect'', and ''syntax'' directories, respectively. These directories are found in the Vim home path. An example of such a Vim path is ''/usr/share/vim/vim72''. 
    29  
    30 == Coming soon == 
    31  * Improved support for generics 
    32  * Support for initializations 
    33  * In-comment support 
     45For all users use your system admin privileges to copy the ''indent/cobra.vim'', ''ftdetect/cobra.vim'', ''syntax/cobra.vim'', into Vim's ''indent'', ''ftdetect'', and ''syntax'' directories, respectively. These directories are found in the Vim home path. An example of such a Vim path is ''/usr/share/vim/vim72''. 
    3446 
    3547= Alternative =