Closed ivancuric closed 7 years ago
Yes, that would be very nice to have!
Please add another stop for html attribute (rel="stylesheet"): <link rel="stylesheet" type="text/css" href="assets/css/style.css">
+1
+1
+1
+1
+1
+1
+1
Please try it! emmet package is required.
~/.atom/config.cson
'.text.html':
'expand-region':
commands: [
{
command: 'editor:select-word'
recursive: false
}
{
command: 'emmet:balance-outward'
recursive: true
}
{
command: 'expand-region:select-inside-single-quotes'
recursive: false
}
{
command: 'expand-region:select-around-single-quotes'
recursive: false
}
{
command: 'expand-region:select-inside-double-quotes'
recursive: false
}
{
command: 'expand-region:select-around-double-quotes'
recursive: false
}
{
command: 'expand-region:select-inside-angle-brackets'
recursive: false
}
{
command: 'expand-region:select-around-angle-brackets'
recursive: false
}
]
Example:
Is it possible to configure the plugin to act in the following way?:
Link1 > a > li > both li (ul inner) > ul (including ul tags)
ul
andli
tags (for example:<ul>|<li>
, the selection is expanded to theul
content, that being the 2li
elements.The reason is that i often need to add another container for some elements, and I can do this easily in ST3's Expand Region in combination with emmet.