@difizen/libro-code-editor 0.2.12 → 0.2.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -85,7 +85,7 @@ var WordWrapColumn = {
85
85
  };
86
86
  var LSPEnabled = {
87
87
  id: 'libro.user.codeeditor.lspenabled',
88
- description: l10n.t('开启语言服务后,编辑器能提供更多辅助编码能力,包括:自动提示、代码诊断、hover提示、格式化、代码跳转、重命名等等(需要使用带有lsp服务的容器, 详情请咨询 @沧浪)'),
88
+ description: l10n.t('开启语言服务后,编辑器能提供更多辅助编码能力,包括:自动提示、代码诊断、hover提示、格式化、代码跳转、重命名等等'),
89
89
  title: l10n.t('开启语言服务'),
90
90
  type: 'checkbox',
91
91
  defaultValue: defaultConfig.lspEnabled,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@difizen/libro-code-editor",
3
- "version": "0.2.12",
3
+ "version": "0.2.14",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "libro",
@@ -34,7 +34,7 @@
34
34
  "dependencies": {
35
35
  "@difizen/mana-app": "latest",
36
36
  "@difizen/mana-l10n": "latest",
37
- "@difizen/libro-common": "^0.2.12",
37
+ "@difizen/libro-common": "^0.2.14",
38
38
  "uuid": "^9.0.0"
39
39
  },
40
40
  "peerDependencies": {
@@ -109,7 +109,7 @@ const WordWrapColumn: ConfigurationNode<number> = {
109
109
  const LSPEnabled: ConfigurationNode<boolean> = {
110
110
  id: 'libro.user.codeeditor.lspenabled',
111
111
  description: l10n.t(
112
- '开启语言服务后,编辑器能提供更多辅助编码能力,包括:自动提示、代码诊断、hover提示、格式化、代码跳转、重命名等等(需要使用带有lsp服务的容器, 详情请咨询 @沧浪)',
112
+ '开启语言服务后,编辑器能提供更多辅助编码能力,包括:自动提示、代码诊断、hover提示、格式化、代码跳转、重命名等等',
113
113
  ),
114
114
  title: l10n.t('开启语言服务'),
115
115
  type: 'checkbox',