Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/xml/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
记事本++;使用XML标记自动关闭按折叠缩进_Xml_Plugins_Autocomplete_Notepad++_Auto Indent - Fatal编程技术网

记事本++;使用XML标记自动关闭按折叠缩进

记事本++;使用XML标记自动关闭按折叠缩进,xml,plugins,autocomplete,notepad++,auto-indent,Xml,Plugins,Autocomplete,Notepad++,Auto Indent,我正在寻找一种在Notepad++中编码XML(特别是mxml)的方法,这样它就可以遵循“按折叠缩进”插件的行为——在开始标记后按“enter”键后缩进——但也包括类似于“XML工具”插件所提供的自动关闭标记 同时启用两者的问题是,我从以下内容开始: <hello>|</hello> <hello> |</hello> <hello> | </hello> | (注意:“|”字符表示光标) 但按下“回车”

我正在寻找一种在Notepad++中编码XML(特别是mxml)的方法,这样它就可以遵循“按折叠缩进”插件的行为——在开始标记后按“enter”键后缩进——但也包括类似于“XML工具”插件所提供的自动关闭标记

同时启用两者的问题是,我从以下内容开始:

<hello>|</hello>
<hello>
   |</hello>
<hello>
   |
</hello>
|
(注意:“|”字符表示光标)

但按下“回车”键后,我得到的结果如下:

<hello>|</hello>
<hello>
   |</hello>
<hello>
   |
</hello>

|
我要找的是这样的东西:

<hello>|</hello>
<hello>
   |</hello>
<hello>
   |
</hello>

|
任何帮助都将不胜感激

编辑:这个问题现在存在于