You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-4
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ with files that are not officially supported.
64
64
65
65
Some points to illustrate the project philosophy:
66
66
67
-
* Extendable functionality but in a controlled environment. New features and new plugins are accepted, but the author will supervise any new content that might affect the product quality and performance.
67
+
* Extendable functionality but in a controlled environment. New features and new plugins are accepted, but the author will supervise any new content that might affect the application quality and performance.
68
68
* Load as few files and resources as possible and load asynchronously as many resources as possible. Startup time of the application is considered critical.
69
69
* Use the machine resources but not abuse them.
70
70
* The editor implementation will try to prioritize performance and memory usage over simplicity.
@@ -122,6 +122,7 @@ via configuration files (for every feature: syntax highlighting, LSP, linter and
122
122
|[x]it! | ✓ | None | None | None |
123
123
| angelscript | ✓ | None | None | None |
124
124
| bat | ✓ | None | None | None |
125
+
| blueprint | ✓ | None | None | None |
125
126
| c | ✓ |[clangd](https://clangd.llvm.org/)|[cppcheck](https://github.com/danmar/cppcheck)|[clang-format](https://clang.llvm.org/docs/ClangFormat.html)|
| nim | ✓ |[nimlsp](https://github.com/PMunch/nimlsp)|[nim](https://nim-lang.org)| None |
164
167
| objeck | ✓ | None | None | None |
@@ -204,8 +207,9 @@ to function.
204
207
205
208
### Language support health
206
209
207
-
ecode brings a CLI flag `ecode --health`. Use the health check flag to troubleshoot missing language
208
-
servers, linters and formatters.
210
+
ecode brings a tool to display the current language support health. From ecode you can check its health
211
+
status from `Settings -> Tools -> Check Language Health`, and from CLI you can use the `--health` flag: `ecode --health`.
212
+
Use the health check flag to troubleshoot missing language servers, linters and formatters.
209
213
210
214
Check the health of all languages with `ecode --health` or ask for details about a specific language
211
215
with `ecode --health-lang=<lang>`.
@@ -445,6 +449,8 @@ C and C++ LSP server example (using [clangd](https://clangd.llvm.org/))
445
449
***statusbar_display_branch**: Enables/disables an always visible status on the bottom statusbar.
446
450
***statusbar_display_modifications**: Enables/disables if the number of lines affected is displayed in the statusbar.
447
451
***ui_refresh_frequency**: Indicates the frequency in which the status is updated (it will only trigger updates if changes are detected inside the `.git` directory).
452
+
***filetree_highlight_changes**: Enables/disables the highlighting of changes on the file-tree.
453
+
***filetree_highlight_style_color**: Allows to change the highlight color in the file-tree.
448
454
449
455
#### Git keybindings object keys
450
456
@@ -692,7 +698,6 @@ you could need some special font (currently covers CJK languages).
692
698
693
699
## Current Limitations
694
700
695
-
* UTF-8 files only support (with BOM included) \*1
0 commit comments