Recuar corretamente o código com o Notepad++

Recuar corretamente o código com o Notepad++

O Notepad ++ pode recuar o código corretamente?

Se eu tivesse isso:

<div><div><div></div></div>   </div>

Existe uma maneira de transformá-lo no seguinte?

<div>
  <div>
    <div>
    </div>
  </div>
</div>

Responder1

Você pode usar o plugin TextFX para reindentar o código para você. Se não o tiver, você precisará instalar a partir do seu gerenciador de plugins. Uma vez instalado > basta usar o menu "TextFX" > "TextFX Edit" > "Reindent C++ code".

Provavelmente não converterá uma única linha, mas o código real com recuos incorretos será bem tratado.

Você encontrará mais informações e outros plug-ins explicadosaqui.

Responder2

InstalarRecuar por dobraplugar. Funciona bem com tags XML (ou derivadas).

Responder3

Todo o meu código estava em uma única linha (minificado). O que fiz foi usar um "desminificador" online para dividir o código em várias linhas. Existem muitos disponíveis se vocêpesquisar no Google, mas aqui está o que funcionou melhor para mim: http://mrcoles.com/blog/css-unminify/

Eu então usei o plugin@Magnum mencionado(TextoFX) para melhorar ainda mais os recuos no código. O resultado foi ótimo!

Antes:

object(stdClass)#2 (1) { ["GetDocTypeListResult"]=> object(stdClass)#3 (1) { ["DocType"]=> array(14) { [0]=> object(stdClass)#4 (2) { ["id"]=> string(3) "180" ["name"]=> string(49) "Return Merchandise Authorization and Notification" } [1]=> object(stdClass)#5 (2) { ["id"]=> string(3) "810" ["name"]=> string(16) "Customer Invoice" } [2]=> object(stdClass)#6 (2) { ["id"]=> string(3) "816" ["name"]=> string(28) "Organizational Relationships" } [3]=> object(stdClass)#7 (2) { ["id"]=> string(3) "820" ["name"]=> string(31) "Payment Order Remittance Advice" } [4]=> object(stdClass)#8 (2) { ["id"]=> string(3) "824" ["name"]=> string(18) "Application Advice" } [5]=> object(stdClass)#9 (2) { ["id"]=> string(3) "830" ["name"]=> string(41) "Planning Schedule with Release Capability" } [6]=> object(stdClass)#10 (2) { ["id"]=> string(3) "840" ["name"]=> string(21) "Request for Quotation" } [7]=> object(stdClass)#11 (2) { ["id"]=> string(3) "846" ["name"]=> string(24) "Inventory Inquiry/Advice" } [8]=> object(stdClass)#12 (2) { ["id"]=> string(3) "850" ["name"]=> string(14) "Purchase Order" } [9]=> object(stdClass)#13 (2) { ["id"]=> string(3) "852" ["name"]=> string(21) "Product Activity Data" } [10]=> object(stdClass)#14 (2) { ["id"]=> string(3) "860" ["name"]=> string(47) "Purchase Order Change Request - Buyer Initiated" } [11]=> object(stdClass)#15 (2) { ["id"]=> string(3) "864" ["name"]=> string(12) "Text Message" } [12]=> object(stdClass)#16 (2) { ["id"]=> string(3) "945" ["name"]=> string(25) "Warehouse Shipping Advice" } [13]=> object(stdClass)#17 (2) { ["id"]=> string(3) "997" ["name"]=> string(26) "Functional Acknowledgement" } } } }

Depois:

object(stdClass)#2 (1)  {
    ["GetDocTypeListResult"]=> object(stdClass)#3 (1)  {
        ["DocType"]=> array(14)  {
            [0]=> object(stdClass)#4 (2)  {
                ["id"]=> string(3) "180" 
                ["name"]=> string(49) "Return Merchandise Authorization and Notification" }
            [1]=> object(stdClass)#5 (2)  {
                ["id"]=> string(3) "810" 
                ["name"]=> string(16) "Customer Invoice" }
            [2]=> object(stdClass)#6 (2)  {
                ["id"]=> string(3) "816" 
                ["name"]=> string(28) "Organizational Relationships" }
            [3]=> object(stdClass)#7 (2)  {
                ["id"]=> string(3) "820" 
                ["name"]=> string(31) "Payment Order Remittance Advice" }
            [4]=> object(stdClass)#8 (2)  {
                ["id"]=> string(3) "824" 
                ["name"]=> string(18) "Application Advice" }
            [5]=> object(stdClass)#9 (2)  {
                ["id"]=> string(3) "830" 
                ["name"]=> string(41) "Planning Schedule with Release Capability" }
            [6]=> object(stdClass)#10 (2)  {
                ["id"]=> string(3) "840" 
                ["name"]=> string(21) "Request for Quotation" }
            [7]=> object(stdClass)#11 (2)  {
                ["id"]=> string(3) "846" 
                ["name"]=> string(24) "Inventory Inquiry/Advice" }
            [8]=> object(stdClass)#12 (2)  {
                ["id"]=> string(3) "850" 
                ["name"]=> string(14) "Purchase Order" }
            [9]=> object(stdClass)#13 (2)  {
                ["id"]=> string(3) "852" 
                ["name"]=> string(21) "Product Activity Data" }
            [10]=> object(stdClass)#14 (2)  {
                ["id"]=> string(3) "860" 
                ["name"]=> string(47) "Purchase Order Change Request - Buyer Initiated" }
            [11]=> object(stdClass)#15 (2)  {
                ["id"]=> string(3) "864" 
                ["name"]=> string(12) "Text Message" }
            [12]=> object(stdClass)#16 (2)  {
                ["id"]=> string(3) "945" 
                ["name"]=> string(25) "Warehouse Shipping Advice" }
            [13]=> object(stdClass)#17 (2)  {
                ["id"]=> string(3) "997" 
                ["name"]=> string(26) "Functional Acknowledgement" }
        }
    }
}

Responder4

OArrumado2plugin faz exatamente o que você deseja.

informação relacionada