Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove a specific suggestion from Atom Editor autocomplete

I deleted an attribute attribute1 from a class.

Atom autocomplete keeps suggesting the text "attribute1" when I type "attribute", which leads to syntax errors.

How do I remove "attribute1" from the possible suggestions?

like image 886
Brigitte Maillère Avatar asked Jun 27 '17 16:06

Brigitte Maillère


People also ask

How do I use autocomplete in atom?

If you're still looking to save some typing time, Atom also ships with simple autocompletion functionality. The autocomplete system lets you view and insert possible completions in the editor using Tab or Enter. By default, the autocomplete system will look through the current open file for strings that match what you're starting to type.

How do I make autocomplete-plus look for text?

By default, the autocomplete system will look through the current open file for strings that match what you're starting to type. If you want more options, in the Settings panel for the autocomplete-plus package you can toggle a setting to make autocomplete-plus look for text in all your open buffers rather than just the current file.

How do I display suggestions in atom API?

Atom now displays suggestions for the atom global. As with the HTML and CSS suggestions, each Atom API suggestion displays the description of the object with a link back to the atom.io documentation. Just type atom. in any JavaScript or CoffeeScript file in your Atom package to display the suggestions.

How do I disable autocomplete for a specific file(s)?

Disable autocomplete for file (s) via blacklisting, e.g. *.md to blacklist Markdown files Disable autocomplete for editor scope (s) via blacklisting Expands a snippet if an autocomplete+ provider includes one in a suggestion


Video Answer


1 Answers

If the suggestion is not a default suggestion, make sure you do not have the typo anywhere else in your currently open project, and then restart atom.

like image 81
Adam Beshir Avatar answered Oct 12 '22 05:10

Adam Beshir