Atom 'autocomplete +' does not work

Thus, Autocomplete + comes with Atom when it is installed and is enabled by default.

When I write the code, nothing appears, why?

Is there any file that I need to configure before it works correctly?

+5
source share
4 answers

On the autocomplete settings page plus there is the option "Black list of files": enter image description here

and by default, all files listed in the "*. *" list, so autocomplete only works in those files that have a special addon installed

I put "* .none" and autocomplete started working in all files for me

+4
source

For atom-typescript and any new typescript project, in general, for things like autocomplete to work correctly, you must have a tsconfig.json file. atom-typescript has a command to create a file when you edit a .ts file.

enter image description here

+2
source

Simple, just install the atom-ternjs package.

+1
source

Just install the current plugin in your Atom editor.

0
source

Source: https://habr.com/ru/post/1232734/


All Articles