O bloco de notas + código de html auto indent enquanto escreve

1

Eu tenho visto muitos plugins no Notepad ++ para indentar código html depois de escrever o código, mas existe um plugin ou outro método para intenção automática html enquanto você está escrevendo o código? Muitos dos outros linguagens de programação O Notepad ++ suporta recuo automático enquanto você escreve, mas o html não parece ter o mesmo suporte.

Alguma idéia?

    
por Mark Skelton 11.03.2016 / 04:02

2 respostas

5

Existe um plugin ou outro método para HTML com intenção automática enquanto você escreve o código?

Duas possibilidades:

  1. Use o plugin TextFX que tem o HTML Tidy integrado.

  2. Use o plug-in Recuar por dobra (veja abaixo).

Plug-in IndentByFold para o Notepad ++

enter image description here

Here's your php code indented by fold:

enter image description here

(The image above is not assembled from two separate images! Notepad++ has the ability to clone its tabs in a new view)

You can access here a screencast demo for the Indent by fold plugin. There's no separate plugin for the auto complete feature in the video; for most languages there are defined already xml files with keywords:

enter image description here

Now, about the Code Alignment plugin: just use it only if you are not satisfied with the Indent by fold results!


Here's how you can define a shortcut for the the indent operation:

Settings/Shortcut mapper/Plugin Commands

enter image description here

The Ctr + K and Ctrl + D shortcuts key are already "taken" (by comment code and duplicate selection), therefore I've choosed another combination. But everyone can re-map all the commands according to own needs.


If anytime you find a language with a "weak" code formatting / folding you can take the lead, and proceed in defining your own folding and coloring rules for keywords, comments, numbers, operators and delimiters:

enter image description here

See how beautiful Indent by fold works when I press ALt + K ?

The vbproc keyword is underlined because the DSpellChecker plugin is active.

Here are a zillion UDLs (User Defined Languages) for Notepad++. To better understand how to use this feature I recommend you to read the UDL 2.0 online documentation. It was a time when folding was possible only for single words like "BeginSub" and "EndSub". Now it is easier because folding can be done using expressions, as you can see in my My better ASP example. Even now, the UDL cannot address every imaginable situations (there is a work in progress called UDL 3). But can we blame the Notepad++ developers for not achieving perfection with this free and simple, yet wonderful utility?

Resposta da fonte Plugin de recuo automático para o Notepad ++ por Sorin Călinică

    
por 11.03.2016 / 12:52
1

Eu não sei de algo que é para o Notepad ++, mas eu recomendo strongmente o download de Brackets e, em seguida, obter as extensões Emmet e Beautify. Emmet contém toneladas de grandes teclas para criar rapidamente elementos html, e Beautify tem um incrível pressionamento de tecla que pode auto-recuar uma página inteira (minha chave é ctrl + shift + L, que eu acho que é o padrão).

    
por 11.03.2016 / 04:10