How do I stop PhpStorm 2016.2 from entering the form tag when I type the word "form" into a paragraph? - phpstorm

After typing the word "form" and entering a space, PhpStorm makes a form! No! No! How do I get PhpStorm to stop doing that?
p.s. stackoverflow won't let me post the images because my reputation is <10 :(
UPDATE. My progress.. or lack thereof:
I've done this without success:
Settings | Emmet | XML | Enable XML Emmet -- disable this option. (as recommended in How can I disable html tag completion in PHPStorm)
Settings | Editor | General | Code Completion | Autopopup code completion -- unchecked it (as recommended in Turn off autocomplete in PhpStorm)
Settings | Editor | General | SmartKeys | XML/HTML | Auto Close tags when typing

Related

PhpStorm: how to Make the inspector / debugger ignore stuff in comments?

I don't need it telling me I spelled the word "danggit!" incorrectly. I just want it to ignore the comments.
like this:
<?php
$a = 123;// simple as, danggit!
/* danggit, this frustrates me! */
also
"The word 'thru' is informal. Consider replacing it with through."
I dont want to see this, especially in comments
I don't need it telling me I spelled the word "danggit!" incorrectly. I just want it to ignore the comments.
You can configure where this "Typo" inspection should be applied at the following screen: Settings/Preferences | Editor | Inspections | Proofreading | Typo.
https://www.jetbrains.com/help/phpstorm/spellchecking.html#configure-the-typo-inspection
Danggit, now i'm getting "The word 'thru' is informal. Consider replacing it with through." I dont want to see this, especially in comments.
This is a different thing in action. This time it's Grammar.
Settings/Preferences | Editor | Natural Languages | Grammar and Style -- Here on a Scopes tab you can configure the same. https://www.jetbrains.com/help/phpstorm/grammar.html#scope
... or/and configure what rules to use (on a Rules tab): https://www.jetbrains.com/help/phpstorm/grammar.html#rules
In case if you need to configure too many of them, well... just disable the Grammar checks completely: Settings/Preferences | Editor | Inspections | Proofreading | Grammar

Empty tag doesn't work in some browsers warning in PhpStorm (Laravel 7)

When I want to use Laravel 7 component, the PhpStorm shows an annoying warning. How could I fix such behavior or disable this warning?
Try disabling HTML | Empty tag inspection in Settings | Editor | Inspections

PhpStorm add Angle brackets with tab

I start with PhpStorm but I don't understand why it adds angle bracket every time I press Tab.
In a html file (| cursor position) I type a then [Tab]. I get I write I have | and then if I write this[Tab] I have <this>|</this>!
No matter where I write to an htlm file, I have this behavior! In a php file, it simply doesn't make a tab. I reset the settings by deleting file ~/Library/Preferences/PhpStrom2017.2. But it's always the same.
If you want to get rid of this behaviour for HTML files you can do this.
Settings | Emmet | HTML | Enable XML/HTML Emmet
-- disable this option.

Turn off highlights

I want to turn off PHPStorm's annoying highlighting for non-error related things.
I read their docs, which said to go to preferences->editor->inspections. I deselected all for SQL, yet I still get this green highlighting for no reason:
How do I disable this? It's quite distracting.
That's Language Injection in action.
You can:
Remove/change background color at Settings (Preferences on Mac) | Editor | Colors & Fonts | General --> Code | Injected language fragment
Disable that particular injection rule altogether at Settings (Preferences on Mac) | Editor | Language Injections

How can I disable html tag completion in PHPStorm

When I'm in HTML/Other context and type foobar and hit Tab it automatically turns into <foobar></foobar>. Is there any option to turn this kind of auto complete off?
Settings | Emmet | XML | Enable XML Emmet -- disable this option.