This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
delimitMate Report | |
================== | |
* Options: ( ) default, (g) global, (b) buffer | |
( ) delimitMate_apostrophes = '' | |
( ) delimitMate_autoclose = 1 | |
( ) delimitMate_balance_matchpairs = 0 | |
( ) delimitMate_excluded_ft = '' | |
( ) delimitMate_excluded_regions = 'Comment' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| |+ack.vim/ | |
| |+adobe/ | |
| |+Command-T/ | |
| |+Decho/ | |
| |+delimitMate/ | |
| |+devbox-dark-256/ | |
| |+dirdiff/ | |
| |+django-vim/ | |
| |+django/ | |
| |+dotrc/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
delimitMate Report | |
================== | |
* Options: ( ) default, (g) global, (b) buffer | |
( ) delimitMate_apostrophes = '' | |
( ) delimitMate_autoclose = 1 | |
( ) delimitMate_balance_matchpairs = 0 | |
( ) delimitMate_excluded_ft = '' | |
( ) delimitMate_excluded_regions = 'Comment' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
delimitMate Report | |
================== | |
* Options: ( ) default, (g) global, (b) buffer | |
( ) delimitMate_apostrophes = '' | |
( ) delimitMate_autoclose = 1 | |
( ) delimitMate_balance_matchpairs = 0 | |
( ) delimitMate_excluded_ft = '' | |
( ) delimitMate_excluded_regions = 'Comment' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let g:gist_browser_command = 'google-chrome %URL%' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]); | |
} | |
} |