在用户使用Intellij IDEA 的过程中,我们需要对语法的高亮和颜色设置的页面进行定义之后,才能征程的进行使用,下面是具体的操作代码和图例说明。
1 定义syntax highlighter
package com.simpleplugin; import com.intellij.lexer.FlexAdapter; import com.intellij.lexer.Lexer; import com.intellij.openapi.editor.SyntaxHighlighterColors; import com.intellij.openapi.editor.colors.TextAttributesKey; import com.intellij.openapi.editor.markup.TextAttributes; import com.intellij.openapi.fileTypes.SyntaxHighlighterBase; import com.intellij.psi.TokenType; import com.intellij.psi.tree.IElementType; import com.simpleplugin.psi.SimpleTypes; import org.jetbrains.annotations.NotNull; import java.awt.*; import java.io.Reader; import static com.intellij.openapi.editor.colors.TextAttributesKey.createTextAttributesKey; public class SimpleSyntaxHighlighter extends SyntaxHighlighterBase { public static final TextAttributesKey SEPARATOR = createTextAttributesKey("SIMPLE_SEPARATOR", SyntaxHighlighterColors.OPERATION_SIGN); public static final TextAttributesKey KEY = createTextAttributesKey("SIMPLE_KEY", SyntaxHighlighterColors.KEYWORD); public static final TextAttributesKey VALUE = createTextAttributesKey("SIMPLE_VALUE", SyntaxHighlighterColors.STRING); public static final TextAttributesKey COMMENT = createTextAttributesKey("SIMPLE_COMMENT", SyntaxHighlighterColors.LINE_COMMENT); static final TextAttributesKey BAD_CHARACTER = createTextAttributesKey("SIMPLE_BAD_CHARACTER", new TextAttributes(Color.RED, null, null, null, Font.BOLD)); private static final TextAttributesKey[] BAD_CHAR_KEYS = new TextAttributesKey[]{BAD_CHARACTER}; private static final TextAttributesKey[] SEPARATOR_KEYS = new TextAttributesKey[]{SEPARATOR}; private static final TextAttributesKey[] KEY_KEYS = new TextAttributesKey[]{KEY}; private static final TextAttributesKey[] VALUE_KEYS = new TextAttributesKey[]{VALUE}; private static final TextAttributesKey[] COMMENT_KEYS = new TextAttributesKey[]{COMMENT}; private static final TextAttributesKey[] EMPTY_KEYS = new TextAttributesKey[0]; @NotNull @Override public Lexer getHighlightingLexer() { return new FlexAdapter(new SimpleLexer((Reader) null)); } @NotNull @Override public TextAttributesKey[] getTokenHighlights(IElementType tokenType) { if (tokenType.equals(SimpleTypes.SEPARATOR)) { return SEPARATOR_KEYS; } else if (tokenType.equals(SimpleTypes.KEY)) { return KEY_KEYS; } else if (tokenType.equals(SimpleTypes.VALUE)) { return VALUE_KEYS; } else if (tokenType.equals(SimpleTypes.COMMENT)) { return COMMENT_KEYS; } else if (tokenType.equals(TokenType.BAD_CHARACTER)) { return BAD_CHAR_KEYS; } else { return EMPTY_KEYS; } } }
2 定义syntax highlighter factory
package com.simpleplugin; import com.intellij.openapi.fileTypes.SyntaxHighlighter; import com.intellij.openapi.fileTypes.SyntaxHighlighterFactory; import com.intellij.openapi.project.Project; import com.intellij.openapi.vfs.VirtualFile; import org.jetbrains.annotations.NotNull; public class SimpleSyntaxHighlighterFactory extends SyntaxHighlighterFactory { @NotNull @Override public SyntaxHighlighter getSyntaxHighlighter(Project project, VirtualFile virtualFile) { return new SimpleSyntaxHighlighter(); } }
3 注册syntax highlighter factory
<lang.syntaxHighlighterFactory key="Simple" implementationClass="com.simpleplugin.SimpleSyntaxHighlighterFactory"/>
4 运行项目
5 定义颜色设置页面
package com.simpleplugin; import com.intellij.openapi.editor.colors.TextAttributesKey; import com.intellij.openapi.fileTypes.SyntaxHighlighter; import com.intellij.openapi.options.colors.AttributesDescriptor; import com.intellij.openapi.options.colors.ColorDescriptor; import com.intellij.openapi.options.colors.ColorSettingsPage; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import javax.swing.*; import java.util.Map; public class SimpleColorSettingsPage implements ColorSettingsPage { private static final AttributesDescriptor[] DESCRIPTORS = new AttributesDescriptor[]{ new AttributesDescriptor("Key", SimpleSyntaxHighlighter.KEY), new AttributesDescriptor("Separator", SimpleSyntaxHighlighter.SEPARATOR), new AttributesDescriptor("Value", SimpleSyntaxHighlighter.VALUE), }; @Nullable @Override public Icon getIcon() { return SimpleIcons.FILE; } @NotNull @Override public SyntaxHighlighter getHighlighter() { return new SimpleSyntaxHighlighter(); } @NotNull @Override public String getDemoText() { return "# You are reading the \".properties\" entry.\n" + "! The exclamation mark can also mark text as comments.\n" + "website = http://en.wikipedia.org/\n" + "language = English\n" + "# The backslash below tells the application to continue reading\n" + "# the value onto the next line.\n" + "message = Welcome to \\\n" + " Wikipedia!\n" + "# Add spaces to the key\n" + "key\\ with\\ spaces = This is the value that could be looked up with the key \"key with spaces\".\n" + "# Unicode\n" + "tab : \\u0009"; } @Nullable @Override public Map<String, TextAttributesKey> getAdditionalHighlightingTagToDescriptorMap() { return null; } @NotNull @Override public AttributesDescriptor[] getAttributeDescriptors() { return DESCRIPTORS; } @NotNull @Override public ColorDescriptor[] getColorDescriptors() { return ColorDescriptor.EMPTY_ARRAY; } @NotNull @Override public String getDisplayName() { return "Simple"; } }
6 注册颜色设置页面
<colorSettingsPage implementation="com.simpleplugin.SimpleColorSettingsPage"/>
7 运行项目
相关推荐
docker-intellij-idea, IntelliJ IDEA的Dockerfile文件类型( 语法高亮) 安装将 Dockerfile.xml 复制到 <YOURIDE_config_folder>/filetypes 并重新启动 IDE ( 想法/PhpStorm ) 。 OS Xcurl --create-dirs
本篇文章将详细探讨`IntelliJ IDEA 2021.3.3`版本中的设置选项,帮助你更好地理解和优化你的开发环境。 1. **全局设置(IntelliJ IDEA Global Settings)** 全局设置是影响整个IDE工作空间的一系列配置,包括编辑...
IntelliJ IDEA的Editor(编辑器)提供了语法高亮、代码分析、智能代码补全等功能,让代码编写更加高效。构建执行部署(BuildExecutionDeployment)相关的功能包括配置项目的打包方式、运行配置以及如何运行和部署...
2. 代码高亮与折叠:根据代码结构,IDEA会自动进行语法高亮和代码折叠,方便阅读。 3. 重构:IDEA提供了丰富的重构工具,如重命名、提取方法、移动文件等,帮助改善代码结构。 4. 调试:IDEA的调试功能强大,支持...
它能理解多种编程语言,包括Java、Python、JavaScript等,提供了语法高亮、错误检测、快速修复等功能,极大地提高了编码效率。在Java Web开发中,它对Spring、Hibernate、Struts等框架的支持非常完善,能无缝集成...
IntelliJ IDEA在Java开发方面有着出色的表现,它提供了代码自动完成、语法高亮、错误检查、重构工具等一系列强大的功能。通过汉化,开发者可以更专注于代码编写,而不是在理解菜单和提示信息上花费额外的时间。 ...
2. **创建项目**:在"Welcome to IntelliJ IDEA"界面选择"Create New Project",选择合适的项目类型,配置项目设置,包括项目名、项目路径、构建工具等。 3. **编辑代码**:在项目中新建或打开源文件,开始编写代码...
- 强大的代码编辑器:提供智能代码补全、语法高亮、错误检查等功能。 - 丰富的插件生态系统:支持各种插件扩展,几乎可以满足所有开发需求。 - 跨平台性:可在 Windows、macOS 和 Linux 上运行。 #### 二、版权...
使用webstorm开发小程序wxml代码高亮提示。webstorm,phpstorm,intellij idea都可使用,小程序代码高亮插件
本篇文章将详细讲解如何在IntelliJ IDEA中配置Vue.js的高亮显示,以便在编写Vue代码时获得更好的视觉体验和开发效率。 首先,我们需要确保IntelliJ IDEA已经安装了Vue.js插件。可以通过快捷键Ctrl+Alt+S打开设置,...
首先,我们要明白不同版本的IntelliJ IDEA和PHP插件之间可能存在兼容性问题。选择合适的插件版本至关重要,因为不匹配的版本可能会导致功能缺失或者稳定性下降。在安装PHP插件前,一定要确认当前IntelliJ IDEA的版本...
IntelliJ IDEA允许用户自定义代码高亮颜色、背景色以及界面元素的颜色。不同的颜色方案可以帮助你减少视觉疲劳,提高代码阅读的舒适度。如果你习惯于特定的配色,导入这里的设置可以快速调整你的IDE界面。 ...
3. **filetypes**: 定义了各种文件类型和关联的语法高亮。 4. **colorscheme**: 颜色和字体设置,可以自定义编辑器的主题,包括背景色、语法高亮色等。 5. **misc.xml**: 各种杂项设置,如启动时打开的项目、最近...
1. **YAML语法高亮**:IntelliJ IDEA会为YAML文件提供颜色编码,使关键字、缩进、字符串等元素易于识别,提高代码可读性。 2. **代码提示和补全**:在编辑YAML文件时,IDE会提供智能代码补全功能,帮助用户快速输入...
这些主题不仅对代码背景色进行了设置,还涵盖了语法高亮、错误提示、警告以及其他界面元素的颜色。要更改主题,可以在"File"菜单中选择"Settings",然后在左侧导航栏选择"Editor" > "Color Scheme"。在这里,你可以...
IntelliJ IDEA是一款深受开发者喜爱的Java集成开发环境(IDE),以其强大的代码自动补全、重构功能和优秀的用户体验而闻名。本指南将深入探讨IntelliJ IDEA的详细配置,帮助初学者快速上手并掌握这款高效开发工具。 ...
IntelliJ IDEA提供了丰富的特性,包括代码自动完成、语法高亮、错误检查、智能代码重构、版本控制集成、项目管理工具等。它支持多种编程语言,如Java、Python、JavaScript、Groovy、Kotlin等,并且对Java EE和Spring...
通过遵循这份文档,用户可以确保正确地设置和使用Scala插件,从而充分利用IntelliJ IDEA的全部功能。 总的来说,IntelliJ IDEA的Scala插件集成对于任何Scala开发者都是必不可少的,无论你是初学者还是经验丰富的...
IntelliJ IDEA提供了强大的编辑器功能,支持代码的重构、智能补全、语法高亮显示、代码折叠等高级特性,极大地提高了编码效率。此外,它还提供了一整套完整的项目配置选项,帮助用户管理项目结构、模块、库文件、...