Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

After entering first characters of <textarea> tag and using autocomplete ( e.g. <texta and hitting ENTER) editor generates following snippet: <textarea rows="" cols=""

It's extremely unhelpful since I don't use rows and cols attributes.

How can I modify those snippets ? I tried "Live templates" section but it's not there.

share|improve this question

1 Answer

up vote 2 down vote accepted

In this case code completion is performed according to the DTD, which defines rows and cols attributes of the textarea tag as Required.

Most likely your file starts with:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/html4/loose.dtd">

or the default HTML language level defines it.

To address this problem you can create HTML 5 files with <!DOCTYPE html> and PhpStorm will stop completing these attributes.

See also the related IDE setting:

enter image description here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.