Thanks for creating this useful extension.
There are some issues using it for django templates, suppose that I'm in the middle of a line containing this:
<div class="{% if some_conditions %}{{ some_class }}else
now I expect pressing <C-X>_ to make it:
<div class="{% if some_conditions %}{{ some_class }}{% else %}
but unfortunately currently it makes it:
{% <div class="{% if some_conditions %}{{ some_class }}else %}
it applies to other similar shortcuts like +, is it possible to fix it?
(this pattern of coding in django templates is pretty common and there are lots of code with this pattern in django admin templates for example)
Thanks for creating this useful extension.
There are some issues using it for django templates, suppose that I'm in the middle of a line containing this:
now I expect pressing
<C-X>_to make it:but unfortunately currently it makes it:
it applies to other similar shortcuts like +, is it possible to fix it?
(this pattern of coding in django templates is pretty common and there are lots of code with this pattern in django admin templates for example)