-1

我不知道它到底是怎么称呼的,但我在一些 youtube 教程上看到有一种按家庭对代码进行排序的方法。我的意思是,如果你有一些用 sublime text 2 编写的代码,而忽略了家庭顺序,你可以选择它并按一些热键对其进行排序。我对编码真的很陌生,我不知道如何使它更清楚。

我用谷歌搜索了它,但我没有找到任何东西。

像这样

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Untitled</title>
<link rel="stylesheet" href="css/style.css">
<link rel="author" href="humans.txt">
</head>
<body>

<script src="js/main.js"></script>
</body>
</html>

对此

<!doctype html>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="description" content="">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>Untitled</title>
        <link rel="stylesheet" href="css/style.css">
        <link rel="author" href="humans.txt">
    </head>
    <body>

        <script src="js/main.js"></script>
    </body>
</html>
4

2 回答 2

1

因此,您尝试做的可能称为“自动缩进”或“自动格式化”。

您可能会发现这个问题和答案很有帮助:如何使用 Sublime Text 2 重新格式化 HTML 代码?. 根据它, Edit > Line > Reindent 应该做你想要的。

于 2013-08-19T20:04:10.733 回答
1

您正在寻找的词是格式化代码:)。

在 sublime 文本中,转到 Tools->Command Palette(或按 Ctrl+Shift+P),然后键入 Reindent Lines 并按 Enter。

于 2013-08-19T20:05:43.777 回答