SNOWFLAKES DRAWING PAPER

[Ubuntu] vim에 ActionScript,MXML Syntax 설정 본문

참고/정보/ubuntu(우분투)/Linux

[Ubuntu] vim에 ActionScript,MXML Syntax 설정

눈송2 2009. 3. 19. 09:29

저는 OS를 우분투(8.10)를 사용하기때문에 우분투 기준





1. 먼저 actionscript.vim, mxml.vim 파일을 다운받습니다 (저의 vim 경로는 /usr/share/vim/vim71 입니다 )

 


2. 다운받은 파일들을 vim syntax 경로에 복사 합니다

 $ tar -xvf vimfiles.tar.gz
 $ sudo cp vimfiles/actionscript.vim mxml.vim /usr/share/vim/vim71/syntax


3. filetype 설정을 해줍니다..

 $ sudo /usr/share/vim/vim71/filetype.vim

  아래 내용 추가
    au BufNewFile,BufRead *.mxml set filetype=mxml
    au BufNewFile,BufRead *.as set filetype=actionscript



4. syntax on 설정을 해줍니다..

 $ sudo /usr/share/vim/vimrc

  내용중에 syntax on 앞에 주석 삭제


참고 :
http://www.conan1412.os3.sg/conan/cblog/archives/307
http://xantorohara.blogspot.com/2007/08/howto-understand-vi-vim-editor.html
http://new.ars.net/vim/create.html
http://www.abdulqabiz.com/blog/archives/flash_and_actionscript/vim_actionscript_and.php

Comments