There was a plugin for Notepad++ that would auto-complete the last open HTML or XML tag when you pressed Ctrl+.. I used this plugin for a while, but I recently reinstalled Notepad++ and can't remember what the plugin was called. Can anybody name the plugin that used this keyboard shortcut to auto-complete XML and HTML tags on demand?
I think that the same plugin also auto-indented XML and HTML, but I'm not sure whether it was the same plugin or a different plugin.
For example, I would type this:
<div id="foo" class="bar"><p>Hello, world!
I would then hit Ctrl+., and it would automatically change to this:
<div id="foo" class="bar"><p>Hello, world!</p>
I would hit Ctrl+. again, and it would change to this:
<div id="foo" class="bar"><p>Hello, world!</p></div>