justinmahar / SublimeCSAutocompletePlus

CoffeeScript autocompletions and more!
172 stars 12 forks source link

Extends a Class in another file #51

Open cwtuan opened 8 years ago

cwtuan commented 8 years ago

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 does't work.