Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions docs/src/data/homepage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,14 +249,14 @@ const comparisonProductFeatures = (locale: HomepageLocale): ComparisonProduct[]
meta: 'Intel',
features: {
syntaxHighlighting: true,
definition: locale === 'en' ? 'Can jump from an instance to a module definition' : '支持从实例跳到模块定义',
definition: locale === 'en' ? 'Only supports jump from an instance to a module definition' : '仅支持从实例跳到模块定义',
references: false,
hover: false,
completion: false,
rename: false,
semanticHighlighting: false,
signatureHelp: false,
documentSymbols: locale === 'en' ? 'Supports modules' : '支持模块',
documentSymbols: locale === 'en' ? 'Only supports modules' : '仅支持模块',
folding: true,
selectionRange: false,
codeActions: false,
Expand All @@ -271,7 +271,7 @@ const comparisonProductFeatures = (locale: HomepageLocale): ComparisonProduct[]
syntaxHighlighting: true,
definition: true,
references: true,
hover: locale === 'en' ? 'Shows variable type information' : '支持显示变量的类型信息',
hover: locale === 'en' ? 'Only shows variable types' : '支持显示变量的类型信息',
completion: false,
rename: false,
semanticHighlighting: false,
Expand All @@ -288,21 +288,21 @@ const comparisonProductFeatures = (locale: HomepageLocale): ComparisonProduct[]
name: 'Verible',
meta: 'Most-Starred OSS',
features: {
syntaxHighlighting: false,
syntaxHighlighting: 'en' ? 'Does not support itself, requires editor-provided syntax highlighting' : '自身不支持,需要编辑器提供语法高亮',
definition: true,
references: true,
hover: false,
completion: false,
rename: false,
rename: true,
semanticHighlighting: false,
signatureHelp: false,
documentSymbols: true,
folding: false,
folding: 'en' ? 'Does not support itself, requires editor-provided folding' : '自身不支持,需要编辑器提供缩进折叠',
selectionRange: false,
codeActions:
locale === 'en' ? 'Supports linter quick fixes and auto-expansion' : '支持 linter 的 quickfix 和 autoexpand',
annotations: false,
diagnostics: locale === 'en' ? 'Supports syntax errors and linter rules' : '支持语法错误和 linter 规则',
locale === 'en' ? 'Only supports linter quick fixes and autoexpand' : '仅支持 linter 的 quickfix 和 autoexpand',
inlayHints: false,
diagnostics: locale === 'en' ? 'Only supports syntax errors and linter rules' : '仅支持语法错误和 linter 规则',
},
},
{
Expand Down
Loading