dart-sublime-bundle
dart-sublime-bundle copied to clipboard
Sublime Text 3 Dart Package
Currently, generating Dart documentation invokes `docgen`, but as of Dart 1.12, the infinitely better `dartdoc` replaces `docgen`. https://github.com/dart-lang/dartdoc I had a quick look through the code and noticed the `docgen`...
The new dart release allows you to put this flag after `pub get` which will not create symlinks. Is there a way to use this flag with this sublime text...
ST has a bug where the `.on_modified(view)` event handler will be passed the wrong `view` if: - the same file is opened in multiple views (using multiple panes) - one...
I'm getting the following error when running Dart files: ``` Traceback (most recent call last): File "/opt/sublime_text/sublime_plugin.py", line 533, in run_ return self.run(**args) File "/home/ceronman/.config/sublime-text-3/Packages/Dart/run.py", line 263, in run if...
The now cause the response handling code to raise errors.
It was removed for some reason I forget, but the atom plugin has it and it can certainly simplify setup for many users.
``` dart // Copyright (c) 2015, . All rights reserved. Use of this source code // is governed by a BSD-style license that can be found in the LICENSE file....
Hi! New syntax is coming in 1.12. Here's some samples: ``` print(exp ?? other); // prints other if exp is null obj ??= 'hi'; // sets obj to hi if...