Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

atom text editor: autocomplete doesn't work

I started using atom IDE for writing HTML+ CSS code. autocomplete-atom-api is activated and still no code is completed neither automatically nor when I press ctrl+space.

This is my keymap.cson file:

'.active.pane':
  'ctrl-space': 'autocomplete:toggle'

Do you know what can be the problem?

like image 314
CrazySynthax Avatar asked Mar 31 '16 17:03

CrazySynthax


People also ask

How do I enable autocomplete in Atom?

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. The Autocomplete functionality is implemented in the autocomplete-plus package.

How do you autofill an HTML Atom?

Usage. Finally, press: alt + tab or, right click and do Run HTML Tag AutoComplete . You will also find it available under Packages in menubar.

Which is better Atom or Visual Studio code?

Visual Studio Code has a greater number of built-in features than Atom provides through extensions and third-party applications. When it comes to User Interface, Atom has a basic GUI, still, Visual Studio Code looks decent. Both the editors offer a huge number of extensions that are easy to add and configure.

How do I turn off autocomplete Atom?

Here's how: Go to the Atom Settings: Atom > Preferences… Then uncheck the “Show Suggestions On Keystroke” checkbox: That's it!


1 Answers

The problem was resolved by Packages->Keybinding Resolver->toggle

like image 127
CrazySynthax Avatar answered Sep 22 '22 23:09

CrazySynthax