Skip to content

Instantly share code, notes, and snippets.

delimitMate Report
==================
* Options: ( ) default, (g) global, (b) buffer
( ) delimitMate_apostrophes = ''
( ) delimitMate_autoclose = 1
( ) delimitMate_balance_matchpairs = 0
( ) delimitMate_excluded_ft = ''
( ) delimitMate_excluded_regions = 'Comment'
| |+ack.vim/
| |+adobe/
| |+Command-T/
| |+Decho/
| |+delimitMate/
| |+devbox-dark-256/
| |+dirdiff/
| |+django-vim/
| |+django/
| |+dotrc/
" Vim syntax file
" Language: actionScript
" Maintainer: Abdul Qabiz (mail at abdulqabiz.com)
" Author and previous maintainer:
" Igor Dvorsky <[email protected]>
" URL: http://www.abdulqabiz.com/files/vim/actionscript.vim
" Original URL: http://www.modesite.net/vim/actionscript.vim
" Last Change: 2006 Jun 20
" Updated to support AS 2.0 2004 Mar 12 by Richard Leider ([email protected])
" Updated to support new AS 2.0 Flash 8 Language Elements 2005 September 29 ([email protected])
delimitMate Report
==================
* Options: ( ) default, (g) global, (b) buffer
( ) delimitMate_apostrophes = ''
( ) delimitMate_autoclose = 1
( ) delimitMate_balance_matchpairs = 0
( ) delimitMate_excluded_ft = ''
( ) delimitMate_excluded_regions = 'Comment'
delimitMate Report
==================
* Options: ( ) default, (g) global, (b) buffer
( ) delimitMate_apostrophes = ''
( ) delimitMate_autoclose = 1
( ) delimitMate_balance_matchpairs = 0
( ) delimitMate_excluded_ft = ''
( ) delimitMate_excluded_regions = 'Comment'
"Use Vim settings, rather then Vi settings (much better!).
"This must be first, because it changes other options as a side effect.
set nocompatible
"ignore case
set ic
"show line numbers
set nu
let g:gist_browser_command = 'google-chrome %URL%'
private function onSWFAddressChange(evt : SWFAddressEvent) : void {
var rawPath : String = SWFAddress.getPath();
LogManager.log('onSWFAddressChange: rawPath = ' + rawPath, this, 1);
var standardizedPath : String = PathManager.getStandardizedPath(sanitizeSWFAddressPath(rawPath));
LogManager.log('onSWFAddressChange: standardizedPath = ' + standardizedPath + ', currentPath = ' + currentPath, this, 1);
if(!standardizedPath) standardizedPath = PathManager.DEFAULT_PATH;
dispatchEvent(new ViewEvent(ViewEvent.CHANGE,standardizedPath));
if(standardizedPath == currentPath) {
LogManager.log('onSWFAddressChange: path is the current path. aborting load.', this, 2);
viewLoader.killActiveLoad();
private function onViewReady(loadedView : IBaseView) : void {
trace( "-->loadedView", loadedView );
LogManager.log('onViewReady: loadedView = ' + loadedView.path, this, 2);
if(_viewReadyCallback != null) {
currentView = loadedView;
_viewReadyCallback.apply(this, [currentView]);
}
}
private function onViewReady(loadedView : IBaseView) : void {
trace( "-->loadedView", loadedView );
LogManager.log('onViewReady: loadedView = ' + loadedView.path, this, 2);
if(_viewReadyCallback != null) {
currentView = loadedView;
_viewReadyCallback.apply(this, [currentView]);
}
}