Skip to content

Latest commit

 

History

History
74 lines (63 loc) · 3.85 KB

README.org

File metadata and controls

74 lines (63 loc) · 3.85 KB

HTML layer

img/html.png

Table of Contents

Description

This layer adds support for editing HTML and CSS.

Features

  • Editing HTML and CSS file using web-mode
  • Support for Sass/Scss and Less files
  • Generate HTML and CSS coding using emmet-mode
  • Tags navigation on key % using evil-matchit
  • Support for editing Slim and Jade templates using slim-mode and jade-mode

Install

To use this configuration layer, add it to your ~/.spacemacs. You will need to add html to the existing dotspacemacs-configuration-layers list in this file.

Key Bindings

Web mode

Key BindingDescription
SPC m g pquickly navigate CSS rules using helm
SPC m e hhighlight DOM errors
SPC m g bgo to the beginning of current element
SPC m g cgo to the first child element
SPC m g pgo to the parent element
SPC m g sgo to next sibling
SPC m h pshow xpath of the current element
SPC m r cclone the current element
SPC m r ddelete the current element (does not delete the children)
SPC m r rrename current element
SPC m r wwrap current element
SPC m zfold/unfold current element
%evil-matchit keybinding to jump to closing tag

A micro-state is also defined, start it with SPC m . or , .

Key BindingDescription
?Toggle full help
cclone current element
ddelete (vanish) current element (does not delete the children)
Ddelete current element and children
jnext element
J / gjnext sibling element
hparent element
kprevious element
K / gkprevious sibling element
lfirst child element
pshow xpath of current element
qleave the micro-state
rrename current element
wwrap current element

CSS/SCSS

Key BindingDescription
SPC m g hquickly navigate CSS rules using helm
SPC m z cfold css statement to one line
SPC m z ounfold css statement to one line