BooperDooper
BooperDooper

Reputation: 43

Why does my text editor suggest "XXX" when editing html

When i type in "x", my text editor, atom.io, suggests "xxx". If i select it, it simply displays

<!-- XXX:  -->

What does it mean or stand for?

Upvotes: 4

Views: 1917

Answers (2)

scotts7777
scotts7777

Reputation: 57

It's caused by the "autocomplete" feature in Atom. To turn it off, go to Atom -> Preferences, select "Packages" on the left, scroll down to "autocomplete-snippets" and click the Disable button.

This will disable the autocompletion of all "snippets" but auto-completing of things like variable names etc will still work.

Upvotes: 0

Fab313
Fab313

Reputation: 2288

This is a snippet provided by Atom. More about snippets: http://flight-manual.atom.io/using-atom/sections/snippets/

More about the meaning of XXX: What is the meaning of #XXX?

Upvotes: 3

Related Questions