Changes between Initial Version and Version 1 of Web/ViEditor


Ignore:
Timestamp:
Mar 24, 2011, 9:28:14 AM (15 years ago)
Author:
/O=GRID-FR/C=FR/O=CNRS/OU=IPHC/CN=Jerome Pansanel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Web/ViEditor

    v1 v1  
     1= Vi Editor =
     2
     3[http://www.vim.org/ Vim] is a highly configurable text editor built to enable efficient text editing. It supports syntax highlighting and code completion for many languages. However, PAN language is not supported by default. The following sections describes how to use Vi for PAN template development.
     4
     5== Syntax Highlighting ==
     6
     7The syntax highlighting is enabled by installing two files. It can be done with the following process:
     8{{{
     9mkdir -p ${HOME}/.vim/ftdetect
     10mkdir ${HOME}/.vim/syntax
     11}}}
     12
     13Download the following file from the quattor website:
     14{{{
     15https://quattor.svn.sourceforge.net/svnroot/quattor/trunk/panc-vim/ftdetect/pan.vim
     16}}}
     17and copy it to the {${HOME}/.vim/ftdetect} directory.
     18
     19Download the following file from the quattor website:
     20{{{
     21https://quattor.svn.sourceforge.net/svnroot/quattor/trunk/panc-vim/syntax/pan.vim
     22}}}
     23and copy it to the {${HOME}/.vim/syntax} directory.
     24
     25Take care, the two files have the same name!