在 javadoc 注释中插入标记代码的 IntelliJ 快捷键是什么?
What is the IntelliJ shortcut key to insert the tag code in a javadoc comment?
我希望在撰写评论时有一种快速将文本格式化为代码的方法。在 Javadoc 中,要将文本格式化为代码,您必须在 {@code … }
标记内包含文本。但是,先输入大括号然后输入@,再输入文本有点乏味。所以要是有个快捷键可以更快速的实现就好了
IntelliJ 中在 javadoc 注释中插入 {@code .... }
的最简单方法是什么?
我已经注意到已经有一个教程如何为一个项目生成 JavaDoc 引用,它告诉我们:
To generate project documentation
- On the main menu, choose Tools | Generate JavaDoc. Generate JavaDoc
dialog is opened.
- In the Generate JavaDoc dialog, specify the following options:
- Select scope (whole project or a certain project
with subpackages).
- Specify the output directory, where the generated documentation will be placed.
- Use the slider to define the level of visibility of members to be included in the generated documentation.
- Specify the other JavaDoc options. Refer to the topic Generate
JavaDoc Dialog for description of controls.
- Click OK.
From: https://www.jetbrains.com/help/idea/2016.2/generating-javadoc-reference-for-a-project.html
但在提到的 Generate JavaDoc Dialog
中没有提供 {@code .... }
范围...
What is the simplest way in IntelliJ to insert a {@code .... } in a javadoc comment?
我认为最简单的方法是创建实时模板供以后使用。
只需转至 Settings -> Live Templates
,选择 Templates Group
,创建 JAVADOC
模板组,然后添加您的 JavaDoc code
模板。
希望对您有所帮助
创建一个新的 surround Live Template,使用您能记住的缩写(例如 S
表示源代码)。描述类似于 Surround with {@code ...}
。模板文本:{@code $SELECTION$}
。适用于 Java | Comment
.
现在您可以 select 任何您想用 {@code ...} 包围的文本并调用 Code | Surround With...
(Ctrl+Alt+T后跟[=20=]你的缩写)来格式化它。
我希望在撰写评论时有一种快速将文本格式化为代码的方法。在 Javadoc 中,要将文本格式化为代码,您必须在 {@code … }
标记内包含文本。但是,先输入大括号然后输入@,再输入文本有点乏味。所以要是有个快捷键可以更快速的实现就好了
IntelliJ 中在 javadoc 注释中插入 {@code .... }
的最简单方法是什么?
我已经注意到已经有一个教程如何为一个项目生成 JavaDoc 引用,它告诉我们:
To generate project documentation
- On the main menu, choose Tools | Generate JavaDoc. Generate JavaDoc dialog is opened.
- In the Generate JavaDoc dialog, specify the following options:
- Select scope (whole project or a certain project with subpackages).
- Specify the output directory, where the generated documentation will be placed.
- Use the slider to define the level of visibility of members to be included in the generated documentation.
- Specify the other JavaDoc options. Refer to the topic Generate JavaDoc Dialog for description of controls.
- Click OK.
From: https://www.jetbrains.com/help/idea/2016.2/generating-javadoc-reference-for-a-project.html
但在提到的 Generate JavaDoc Dialog
中没有提供 {@code .... }
范围...
What is the simplest way in IntelliJ to insert a {@code .... } in a javadoc comment?
我认为最简单的方法是创建实时模板供以后使用。
只需转至 Settings -> Live Templates
,选择 Templates Group
,创建 JAVADOC
模板组,然后添加您的 JavaDoc code
模板。
希望对您有所帮助
创建一个新的 surround Live Template,使用您能记住的缩写(例如 S
表示源代码)。描述类似于 Surround with {@code ...}
。模板文本:{@code $SELECTION$}
。适用于 Java | Comment
.
现在您可以 select 任何您想用 {@code ...} 包围的文本并调用 Code | Surround With...
(Ctrl+Alt+T后跟[=20=]你的缩写)来格式化它。