IvyApp / ivy-codemirror

An Ember component for the excellent CodeMirror editor.
http://ivyapp.github.io/ivy-codemirror/
MIT License
51 stars 29 forks source link

How to set up the show-hint feature #30

Open wuarmin opened 7 years ago

wuarmin commented 7 years ago

Hello, nice addon :smile: !

I don't know how to use the show-hint feature with this addon. I know how to add the addonFiles(described at doc), but I couldn't find out, what's the way to use it.

thx

nmccready commented 6 years ago

Here is a way:

ember-cli-build.js

codemirror: {
      modes: ['javascript', 'sql'],
      themes: ['solarized', 'twilight', 'monokai'],
      addonFiles: [
        'hint/show-hint.css', 'hint/show-hint.js',
        'hint/sql-hint.js',
        'hint/javascript-hint.js'
      ]
    }