SublimeCSAutocompletePlus icon indicating copy to clipboard operation
SublimeCSAutocompletePlus copied to clipboard

CoffeeScript autocompletions and more!

Results 20 SublimeCSAutocompletePlus issues
Sort by recently updated
recently updated
newest added

Appliance.coffee: ``` class Appliance toggle: -> ``` LavaLamp.coffee: ``` Appliance = require './Appliance' class LavaLamp extends Appliance test: -> @.toggle() # This isn't shown ``` In LavaLamp, the the autocomplete...

I've installed on sublime 3 from package manager but it doesn't show me any auto completion! My sublime console : reloading plugin Package Control.Package Control reloading plugin CSSLint.CSSLint reloading plugin...

Right now, if I commit an autocomplete of a method call, it spawns parenthesis around the arguments, which is against my regular coding pattern (I use spaces for single non-chained...

Drop down would not work if it is a dotted class name..can there be a patch to make it work.

- Entire Angular API space covered - Some new features require implementing to make this 100%

First off, this is such an amazing plugin for Sublime Text. Amazing job @justinmahar! I'm just testing it out today for the first time, and I've run into some trouble...

Type hints are currently not shown if I use CoffeeScripts sugar for property-assigning arguments: ``` class MyClass # [String] name setName(@name): -> ``` Neither does it work if I use...

Don't know what other info to provide, but I'm using an up to date Sublime Text 2 on Mac OS 10.8. Let me know what else I can provide to...

- Support Coffeelint no_implicit_parens check by surfacing a config option (disabled by default), that will always insert parens around completion parameters, even when there is only 1 parameter and it...

Assume a simple example against jQuery that works perfectly fine. ``` coffeescript $('#id').add('') ``` Now let's try to break it up, so that a `.` continues against the type. This...