Scripts |
Prev | Working with Plugins | Next |
Converts the selected text to a pair of opening and closing HTML or XML tags.
For example, if div
is selected, this item will replace
that with <div></div>
.
Wraps the selected text with the tag provided on the command line.
When the cursor is inside a pair of HTML/XML tags, this option will change the selection to include the contents of those HTML/XML tags, without selecting the tags themselves.
When the cursor is inside a pair of HTML/XML tags, this item will change the selection to include the contents of those HTML/XML tags, including the tags themselves.
If the cursor is inside an opening HTML/XML tag, this item will move it to the closing tag. If the cursor is inside the closing tag, it will instead move it to the opening tag.
If the selected portion is not a comment, this item will enclose that portion
in HTML/XML comments (e.g.
<!-- selected text -->
). If the selected
portion is a comment, the comment tags will be removed instead.
If the cursor is presently inside a HTML/XML tag, this item will delete the entire tag.
This item will subtract one from the currently selected text, if it is a number.
For example, if 5
is selected, it will become
4
.
This item will subtract 10 from the currently selected text, if it is a number.
For example, if 15
is selected, it will become
5
.
This item will subtract 0.1 from the currently selected text, if it is a number.
For example, if 4.5
is selected, it will become
4.4
.
This item will add one to the currently selected text, if it is a number.
For example, if 5
is selected, it will become
6
.
This item will add 10 to the currently selected text, if it is a number.
For example, if 5
is selected, it will become
15
.
This item will add 0.1 to the currently selected text, if it is a number.
For example, if 4.5
is selected, it will become
4.6
.
Prev | Contents | Next |
Working with Plugins | Up | Kate Application Plugins |