inline-autocomplete
Inserts possible completions in the editor with `escape`, Textmate style.
alexchee 5,518 10 2.1.0 GitHub

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:

  • Pull Editor's grammar to Word List
  • Figure out how to make confirmKeys customizable