I often find myself removing and adding XML sections in configuration files:
- tomcat's server.xml
- maven's settings.xml
and many others.
Is there a vim plugin/command to make this simple?
|
1
|
I often find myself removing and adding XML sections in configuration files:
and many others. Is there a vim plugin/command to make this simple?
|
||
|
|
|
|
You can use a combination of matching XML tags, as can be seen in this question and Perl's search and replace. For instance, given this snippet:
Put the cursor on either the opening or closing
Alternatively, you can just delete it like this:
|
||||||||
|
|
|
Hello! I think that adapting this vim tip might be useful. I propose adding:
to your .vimrc Then, with a visual selection active (V), hit \c (backslash then c) to wrap your block in Alternatively, as suggested on the wiki you can put the code in ~/.vim/scripts/wrapwithcomment.vim and add to your .vimrc:
to only load that functionality when working on a html or xml file. |
||
|
|
|
|
use surround.vim for general tag matching, deleting, inserting, surrounding etc, For commenting tags, it is easy to use vim text objects & and a simple macro Example: enter
somewhere suitable, then place your cursor at the capital "A" of "ArrayType" on line two of the following (borrowed from Nathan Fellmans example above)
then hit
and you will get:
with your cursor at the end of the comment |
|||
|
|
|
|
Vim doesn't have smart commenting for all file types by itself. You should get a script for your commenting needs. I use the enhcomentify script which has been around and maintained for a long time http://www.vim.org/scripts/script.php?script_id=23 It seems to do xml well and you get the advantage of the same key bindings for any filetype you are using. There are others.. notably the NERD Commenter |
|||
|
|
|
|
Best it'd be if you'd find a command that adds things in the beginning and end of the selection. When I'm commenting python code, I'm doing this:
|
||||||
|