Peter Burns
Peter Burns
Chat!
A basic chat interface, with the ability to send, receive, and display messages. Lots of options for how. Could implement this part in JS and call into with the Rust...
A player shouldn't be allowed to kill more often than once every K ms
``` javascript // input ts module M { export class C { } } // current closure provides goog.provides('C', C) // expected closure provides goog.provides('M.C', M.C); // Unless there's another...
What we're hearing is that [`import.meta`](https://github.com/tc39/proposal-import-meta) is the leading candidate for replacement of the `document.currentScript` methods of getting the current file's url. Still stage 2, but from what I hear...
Repro: Place cursor at the `|` and trigger autocomplete. This gives good completions: ```html
We implement this with willSaveWaitUntil which isn't implemented yet in atom-languageclient. Issue: https://github.com/atom/atom-languageclient/issues/138 Once that's implemented we should just be able to uncomment the section in the config.
e.g. import paper-button.html and type: ``` paper-bu ``` then select `` in the autocomplete and press `enter`. > What happens? Nothing > What should happen? Autocomplete to ``
Autocompletion behavior may have changed in vscode v1.11 Repro: - Open example project - Open index.html - type `paper-` then hit cmd+space Expected results: completion for paper elements Actual results:...
The VS Code 1.6.0 update seems to have changed the way that completions from multiple systems interoperate. Now we're getting completions from both this plugin and from the built in...
I suspect that we do not support this currently, as the language server implementation reads the workspace root on boot. It's possible that vs code handles this for us by...