├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── ideflow.gif ├── keymaps └── ide-flow.cson ├── lib ├── editor-control.coffee ├── flow-autocomplete-provider.coffee ├── ide-flow.coffee ├── plugin-manager.coffee ├── tooltip-view.coffee ├── util-flow-command.coffee └── utils.coffee ├── menus └── ide-flow.cson ├── package.json ├── spec ├── fixtures │ └── is-flow-source.coffee └── utils-spec.coffee └── styles └── ide-flow.less /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukehoban/atom-ide-flow/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukehoban/atom-ide-flow/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukehoban/atom-ide-flow/HEAD/README.md -------------------------------------------------------------------------------- /ideflow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukehoban/atom-ide-flow/HEAD/ideflow.gif -------------------------------------------------------------------------------- /keymaps/ide-flow.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukehoban/atom-ide-flow/HEAD/keymaps/ide-flow.cson -------------------------------------------------------------------------------- /lib/editor-control.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukehoban/atom-ide-flow/HEAD/lib/editor-control.coffee -------------------------------------------------------------------------------- /lib/flow-autocomplete-provider.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukehoban/atom-ide-flow/HEAD/lib/flow-autocomplete-provider.coffee -------------------------------------------------------------------------------- /lib/ide-flow.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukehoban/atom-ide-flow/HEAD/lib/ide-flow.coffee -------------------------------------------------------------------------------- /lib/plugin-manager.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukehoban/atom-ide-flow/HEAD/lib/plugin-manager.coffee -------------------------------------------------------------------------------- /lib/tooltip-view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukehoban/atom-ide-flow/HEAD/lib/tooltip-view.coffee -------------------------------------------------------------------------------- /lib/util-flow-command.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukehoban/atom-ide-flow/HEAD/lib/util-flow-command.coffee -------------------------------------------------------------------------------- /lib/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukehoban/atom-ide-flow/HEAD/lib/utils.coffee -------------------------------------------------------------------------------- /menus/ide-flow.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukehoban/atom-ide-flow/HEAD/menus/ide-flow.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukehoban/atom-ide-flow/HEAD/package.json -------------------------------------------------------------------------------- /spec/fixtures/is-flow-source.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukehoban/atom-ide-flow/HEAD/spec/fixtures/is-flow-source.coffee -------------------------------------------------------------------------------- /spec/utils-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukehoban/atom-ide-flow/HEAD/spec/utils-spec.coffee -------------------------------------------------------------------------------- /styles/ide-flow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukehoban/atom-ide-flow/HEAD/styles/ide-flow.less --------------------------------------------------------------------------------