Mercurial > public > dotfiles
changeset 22:4408beef769d
Vim updates for Mac environment.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 18 Dec 2014 21:07:52 -0600 |
parents | 083b3c7ae8c0 |
children | 7c2f7ee3f55e |
files | .hgignore vim/.vimrc vim/vimfiles/after/ftplugin/actionscript.vim vim/vimfiles/bundle/README.txt |
diffstat | 4 files changed, 12 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/.hgignore Thu Dec 18 20:24:45 2014 -0600 +++ b/.hgignore Thu Dec 18 21:07:52 2014 -0600 @@ -2,5 +2,6 @@ vim/vimfiles/.netrwhist vim/vimfiles/bundle/ctrlp.vim/ +vim/vimfiles/bundle/vim-actionscript/ *.swp *.pyc
--- a/vim/.vimrc Thu Dec 18 20:24:45 2014 -0600 +++ b/vim/.vimrc Thu Dec 18 21:07:52 2014 -0600 @@ -113,6 +113,10 @@ " Format paragraph nnoremap <leader>p gqip +" Actionscript support +let tlist_actionscript_settings = 'actionscript;c:class;f:method;p:property;v:variable' +au BufRead,BufNewFile *.mxml set ft=actionscript + function BgnSwitchPart() python << EOF import vim, os.path, sys
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vim/vimfiles/after/ftplugin/actionscript.vim Thu Dec 18 21:07:52 2014 -0600 @@ -0,0 +1,4 @@ +setlocal tabstop=3 +setlocal softtabstop=3 +setlocal shiftwidth=3 +setlocal noexpandtab
--- a/vim/vimfiles/bundle/README.txt Thu Dec 18 20:24:45 2014 -0600 +++ b/vim/vimfiles/bundle/README.txt Thu Dec 18 21:07:52 2014 -0600 @@ -1,3 +1,6 @@ ctrlp: $ hg clone https://bitbucket.org/kien/ctrlp.vim ctrlp.vim :helptags ~/.vim/bundle/ctrlp.vim/doc + +vim-actionscript: + $ git clone git@github.com:jeroenbourgois/vim-actionscript.git