GoLand 2017.3 Help

Emmet. HTML

File | Settings | Editor | Emmet | HTML for Windows and Linux
GoLand | Preferences | Editor | Emmet | HTML for macOS
Ctrl+Alt+S settings


ItemDescription
Enable XML/HTML EmmetSelect this checkbox to enable Emmet support for XML and HTML. If this checkbox is not selected, complicated abbreviations, such as div.class>ul#list>.item$) and similar, will not work in the editor.
Enable abbreviation previewSelect this checkbox to have GoLand show a pop-up window with a preview of the entered abbreviation before actually expanding it.
emmet abbreviation preview
Enable automatic URL recognition while wrapping text with <a> tag
  • If this checkbox is cleared and you attempt to wrap an URL address with the <a> tag, GoLand simply encloses the URL address in <a href=""></a> and positions the cursor inside the double quotes in the href attribute. For example, wrapping http://www.jetbrains.com will result in <a href="|">http://www.jetbrains.com</a>:
    emmet recognize url off
  • If this checkbox is selected and you attempt to wrap an URL address with the <a> tag, GoLand inserts the URL address inside the double quotes as the value of the href attribute and encloses the URL in <a href="<wrapped URL>"></a>. For example, wrapping http://www.jetbrains.com will result in <a href="http://www.jetbrains.com">http://www.jetbrains.com</a>. Moreover, GoLand highlights the wrapped URL green as a recognized URL:
    emmet recognize url
Add edit point at the end of templateIf this checkbox is selected, an editing position adds to the end of an HTML template ($END$);
if this checkbox is not selected, then the new edit point is not added.

Compare the following:

emmet cursor position
BEMIn this area, specify the BEM separators for the class names, modifiers and short elements. Refer to the Emmet documentation for details.
Filters enabled by defaultIn this area, specify which Emmet filters you want to be applied to an expanded abbreviation before it is shown in the editor. Learn more about filters at http://docs.emmet.io/filters/. To have a filter always applied by default, select the checkbox next to it. The available options are:
Last modified: 14 February 2018

See Also