在Notepad ++中格式化代码

时间:2010-09-03 11:58:03

标签: html notepad++ code-formatting

在Notepad ++中是否有用于格式化代码的键盘快捷键?
我主要使用HTML,CSS和Python代码。

例如:

<title>{% block title %}    {% endblock %}</title>      
 <link rel="stylesheet" href="/media/style.css" type="text/css" media="screen" />
</head>

要:

<head>
  <title>
    {% block title %}
    {% endblock %}
  </title>
  <link rel="stylesheet" href="/media/style.css" type="text/css" media="screen" />
</head>


我记得Visual Studio使用 Ctrl + K + D 来完成它并且NetBeans具有该功能但在Notepad ++中找不到它,如果它甚至可以做到。

14 个答案:

答案 0 :(得分:123)

TextFX - &gt; HTML整洁 - &gt; Tidy:Reindent XML

请记住在执行此操作之前选择HTML代码。

答案 1 :(得分:75)

插件 UniversalIndentGUI 可以直接从插件管理器 安装,并且重新使用最常用的编程语言的可能性。

答案 2 :(得分:20)

如果您转到TextFX菜单并转到TextFX Edit,您会看到一个菜单项Reindent C++ Code

这也将格式化C#代码。

答案 3 :(得分:12)

Here is a list Notepad ++中的可用快捷方式。

如果您没有所需的功能,您可以定义自己的宏并将它们分配给自定义快捷方式(我不习惯使用宏)。

更新:我会在此处发布快捷方式,以防链接失效:

Shortcut    Command

Ctrl-C  Copy
Ctrl-X  Cut
Ctrl-V  Paste
Ctrl-Z  Undo
Ctrl-Y  Redo
Ctrl-A  Select All
Ctrl-F  Launch Find Dialog
Ctrl-H  Launch Find / Replace Dialog
Ctrl-D  Duplicate Current Line
Ctrl-L  Delete Current Line
Ctrl-T  Switch the current line position with the previous line position
F3  Find Next
Shft-F3 Find Previous
Ctrl-Shft-F Find in Files
Ctrl-F3 Find (volatil) Next
Ctrl-Shft-F3    Find (volatil) Previous
Ctrl-Shft-I Incremental Search
Ctrl-S  Save File
Ctrl-Alt-S  Save As
Ctrl-Shft-S Save All
Ctrl-O  Open File
Ctrl-N  New File
Ctrl-F2 Toggle Bookmark
F2  Go To Next Bookmark 
Shft-F2 Go To Previous Bookmark
Ctrl-G  Launch GoToLine Dialog
Ctrl-W  Close Current Document
Alt-Shft-Arrow keys or Alt + Left mouse click   Column Mode Select
F5  Launch Run Dialog
Ctrl-Space  Launch CallTip ListBox
Alt-Space   Launch Word Completion ListBox
Tab (selection of several lines)    Insert Tabulation or Space (Indent)
Shft-Tab (selection of several lines)   Remove Tabulation or Space (outdent)
Ctrl-(Keypad-/Keypad+) or Ctrl + mouse wheel butto  Zoom in (+ or up) and Zoom out (- or down)
Ctrl-Keypad/    Restore the original size from zoom 
F11 Toggle Full Screen Mode
Ctrl-Tab    Next Document
Ctrl-Shft-Tab   Previous Document
Ctrl-Shft-Up    Move Current Line Up
Ctrl-Shft-Down  Move Current Line Down
Ctrl-Alt-F  Collapse the Current Level
Ctrl-Alt-Shft-F Uncollapse the Current Level
Alt-0   Fold All
Alt-(1~8)   Collapse the Level (1~8)
Alt-Shft-0  Unfold All
Alt-Shft-(1~8)  Uncollapse the Level (1~8)
Ctrl-BackSpace  Delete to start of word
Ctrl-Delete Delete to end of word
Ctrl-Shft-BackSpace Delete to start of line
Ctrl-Shft-Delete    Delete to end of line
Ctrl-U  Convert to lower case
Ctrl-Shft-U Convert to UPPER CASE
Ctrl-B  Go to matching brace
Ctrl-Shft-R Start to record /Stop recording the macro
Ctrl-Shft-P Play recorded macro
Ctrl-Q  Block comment/uncomment
Ctrl-Shft-Q Stream comment
Ctrl-Shft-T Copy current line to clipboard
Ctrl-P  Print
Alt-F4  Exit
Ctrl-I  Split Lines
Ctrl-J  Join Lines
Ctrl-Alt-R  Text Direction RTL
Ctrl-Alt-L  Text Direction LT
F1  About

答案 4 :(得分:9)

最新的插件是tidy2,可以通过插件&gt;插件管理器&gt;显示插件管理器安装。

我建议编辑配置1并设置引号:否,尤其是如果你有使用引号的脚本。

此外,整理不止一次可能会导致第一次插入&符号,然后第二次更换&符号。您可能希望使用配置将其发送到您需要的位置。

答案 5 :(得分:6)

这不是你想要的答案,但这是我遇到同样问题时遇到的解决方案。

我是一个非常认真的Notepad ++用户,所以不要采取错误的方式。我已经开始使用NetBeans 8来开发除Notepad ++之外的网站,因为您可以将其设置为自动格式以保存所有语言,并且有大量配置选项可用于格式化,最简单的细节。您可以查看它,发现它是与notepad ++结合使用的有用工具。它也是开源的,完全免费的,并且有一堆插件和其他有用的东西,如果你也使用它自动编译Sass。它绝对不如NP ++那么快,因此它对于小编辑来说并不是很好,但对于长编码会话来说它可能很好。

答案 6 :(得分:4)

对于JavaScript 格式化我使用Notepad ++ JSMin Plugin.Quite Handy

答案 7 :(得分:2)

在我的记事本++中,似乎TextFX需要一个perl环境来格式化HTML文件。 Tidy2不需要任何东西,所以我觉得它更方便。

答案 8 :(得分:2)

如果您只需要对齐,请尝试使用名为Code Alignment的插件。

您可以从Notepad ++中的内置插件管理器获取它。

答案 9 :(得分:1)

我们可以在最新版本的notepad ++中使用以下快捷方式来格式化代码

Alt + Ctrl + Shift + B

答案 10 :(得分:0)

不。 Notepad ++无法自行格式化。格式化可以在许多IDE中轻松完成,例如Eclipse,NetBeans,Visual Studio [Code]。

答案 11 :(得分:0)

截至2019年6月的答案

从Plugin Admin(至少在Notepad ++ 7.7中)安装XML Tools插件

然后单击插件-> XML工具->漂亮打印(仅XML,带换行符)

为我做到了。

答案 12 :(得分:0)

在“插件”>“插件管理”>“搜索XML工具”>“安装”中。

该窗口将重新启动并在插件下安装XML工具。

打开文件,然后单击Ctrl + Alt + Shift + B

答案 13 :(得分:-1)

具有最新版本XMLTools的

NPP + v7.9.1无法格式化从Office 2016/2019 Word导出的VBA代码。由于它将CRLF剥离,因此将所有代码放在同一行上。此外,启用“自动验证”后,它会在第一个VBA行上出错,即属性VB_Name =“ VBA模块名称”。因此,任何xml工具验证显然都不能用于VBA验证。