") 'tagedit-forward-barf-tag)
(define-key tagedit-mode-map (kbd "M-r") 'tagedit-raise-tag)
(define-key tagedit-mode-map (kbd "C-k") 'tagedit-kill)
(define-key tagedit-mode-map (kbd "s-k") 'tagedit-kill-attribute)
```
## Experimental tag editing
I am currently working on automatically updating the closing tag when
you edit the starting tag. It is an experimental feature, since it is quite new
and I'm sure it breaks some things.
This also inserts `<>>` when you type `<`, and expands it to
`` as you type.
You can turn on experimental features using:
```cl
(tagedit-add-experimental-features)
```
## Other conveniences
It also expands one-line tags into multi-line tags for you, when you
press refill-paragraph. Like this:
```html
My one very long text inside a tag that I'd like to refill
```
then after `M-q`:
```html
My one very long text inside a tag that
I'd like to refill
```
You can disable this behavior by setting
`tagedit-expand-one-line-tags` to nil.