Releases: Pegase745/sublime-flowtype
Releases · Pegase745/sublime-flowtype
1.0.0-beta.1
Added
- Highlight uncovered locations after running coverage check.
1.0.0
1.0.0-beta
Added
- Disable all commands if no flow pragma is found.
Changed
- Separate the
check_contents
command into aview_errors
command used to show errors in a panel.
Fixed
- Build a snippet when auto-completing a suggested function.
- Show flow error when cursor on an errored line.
v1.0.0-alpha.3
Added
- Add
goto_definition
command binded toctrl+left-mouse-click
. - Add
view_type
command binded toctrl+right-mouse-click
. - Add
coverage
command showing percentage of uncovered lines in status bar. - Add
autocomplete
command showing Flow suggestions onctrl+alt+space
, and is also activate by default on file edit. - Add
suggest_annotations
applying suggested type annotations to file.
Changed
- Activate check contents by default on file save, without showing the quick panel.
Fixed
- Show error context and full description in quick panel.
- Use
--quiet
option to suppress output about server startup. - Don't include commands in coverage until the separation of unit and functional tests.
- Fix autocomplete trigger and show type as the suggestion's description.
- Don't add a pragma if it's already there.
v1.0.0-alpha.2
Added
- Add
ctrl+alt+c
as a keybinding forcheck_contents
.
Changed
- Show the errors in a quick panel instead of status bar.
v1.0.0-alpha.1
Added
- Add a spinner in status bar for threaded processes.
Fixed
- Run
check_contents
in a thread in order to not freeze UI. - Fix
check_contents
result not showing on Flow server initialization.
v1.0.0-alpha
Added
- Auto-complete built-in types available in Flow 0.44.0.
- Add an
Check contents
command checking the contents of a JS file, listing the errors and highlighting corresponding regions. - Add an
Add pragma
command inserting the pragma on the first row of a JS file. - Add tests raising coverage to 99%.