alexchee / atom-inline-autocomplete

Adds inlined autocomplete to Atom, like Textmate's autocomplete.
MIT License
3 stars 2 forks source link

Inline Autocomplete package

Originally a fork from Autocomplete package, but I made it's own repo to make reporting issues easier.

Inlines possible completions in the editor using escape, like Textmate's autocomplete.

Looking to use a different keybinding? Copy the following to your ~/.atom/keymap.cson to tweak:

'atom-text-editor:not([mini])':
  'alt-space': 'inline-autocomplete:cycle'
  'shift-alt-space': 'inline-autocomplete:cycle-back'

You can add a keybind to confirm a selection:

'.inline-autocompleting':
  'space': 'inline-autocomplete:stop'

TODO: