Editing javascript within HTML is annoying. To generalize, editing code that's embedded in some different code is annoying.
Given the following example:
<scripttype="text/javascript">$(document).ready(function(){$('#foo').click(function(){alert('OK');});})</script>Execute :InlineEdit within the script tag. A proxy buffer is opened with
only the javascript. Saving the proxy buffer updates the original one. You
can reindent, lint, slice and dice as much as you like.
Check the docs for more information, see the examples directory for some
example files to try it on.
If you like the plugin, consider rating it on vim.org.
- Javascript and CSS within HTML
<head><scripttype="text/javascript">$(document).ready(function(){$('#foo').click(function(){alert('OK');});})</script><style>body {
color: blue;
background-color: red;
}
</style></head>SQL within ruby (matches "<<-SQL")
defsome_heavy_queryexecute<<-SQL SELECT * FROM users WHERE something = 'other'; SQLend
Code within fenced markdown blocks
Some text.
``` ruby
def foo
puts "OK"
end
```
``` python
def foo():
print("OK")
```
Some other text.
- Django blocks in templates (Thanks to @Vladimiroff)
{%blockcontent%}
<h1>{{ section.title }}</h1>
{%forstoryinstory_list%}
<h2>
<ahref="{{ story.get_absolute_url }}">
{{ story.headline|upper }}
</a>
</h2>
<p>{{ story.tease|truncatewords:"100" }}</p>
{%endfor%}{%endblock%}- Visual mode - any area that you mark