https://github.com/endel/flashdevelop.vim
This plugin aims to provide productive features for editing ActionScript 3.0 files inside your VIM.
https://github.com/endel/flashdevelop.vim
Last synced: 12 months ago
JSON representation
This plugin aims to provide productive features for editing ActionScript 3.0 files inside your VIM.
- Host: GitHub
- URL: https://github.com/endel/flashdevelop.vim
- Owner: endel
- License: other
- Created: 2012-03-06T02:48:41.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-05-03T01:59:39.000Z (about 14 years ago)
- Last Synced: 2025-04-12T20:09:14.022Z (about 1 year ago)
- Language: Ruby
- Homepage:
- Size: 227 KB
- Stars: 16
- Watchers: 6
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
FlashDevelop features for VIM [](http://travis-ci.org/endel/flashdevelop.vim)
===
This plugin aims to provide productive features for editing ActionScript 3.0 files inside your VIM.
It's actually on early development stage, but you can try it and improve it if you feel adventurous.
Requirements
---
* VIM with ruby bindings. (+ruby)
* sprout gem (gem install sprout)
* [vim-rooter](https://github.com/airblade/vim-rooter) plugin
* [tlib](https://github.com/tomtom/tlib_vim) plugin
* Custom ctags configuration, as described above.
ctags
---
flashdevelop.vim requires a custom ctags configuration for ActionScript files.
Copy the contents of support/ctags into your ~/.ctags
Features currently avaible
---
Commands:
* :R - Swap between implementation and test classes.
* :make - Compilation through project-sprouts.
Keyboard bindings:
* __Leader + N__ - Create a new class
* __Leader + m__ - Autocomplete
* If cursor inside a class name:
* Create a class if it's name isn't defined, otherwise try to import it.
* If cursor inside 'override' statement:
* Show a list of parent class functions, to auto-complete for override.
* If cursor inside a uppercased word:
* Ask for access level to create a constant. (private static var CONST : String = "const";)
* If inside a method call, that was not defined yet:
* Ask for access level and create that method.
The auto-complete functionality deeply uses tags file generated with exuberant-ctags. It's important to always have your tags updated.
TODO
---
The first goal of flashdevelop.vim is to implement the [FlashDevelop generation features](http://www.flashdevelop.org/wikidocs/index.php?title=Features:Generation)
License
---
This plugin is distributed under the MIT license. Please see the LICENSE file.