Skip to content

Commit 29a2ab5

Browse files
committed
Update README.md.
1 parent 1f222a3 commit 29a2ab5

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

Diff for: README.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ with files that are not officially supported.
6464

6565
Some points to illustrate the project philosophy:
6666

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.
6868
* Load as few files and resources as possible and load asynchronously as many resources as possible. Startup time of the application is considered critical.
6969
* Use the machine resources but not abuse them.
7070
* 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
122122
| [x]it! || None | None | None |
123123
| angelscript || None | None | None |
124124
| bat || None | None | None |
125+
| blueprint || None | None | None |
125126
| c || [clangd](https://clangd.llvm.org/) | [cppcheck](https://github.com/danmar/cppcheck) | [clang-format](https://clang.llvm.org/docs/ClangFormat.html) |
126127
| cmake || [cmake-language-server](https://github.com/regen100/cmake-language-server) | None | None |
127128
| cpp || [clangd](https://clangd.llvm.org/) | [cppcheck](https://github.com/danmar/cppcheck) | [clang-format](https://clang.llvm.org/docs/ClangFormat.html) |
@@ -139,6 +140,7 @@ via configuration files (for every feature: syntax highlighting, LSP, linter and
139140
| gdscript || None | None | None |
140141
| glsl || [glsl_analyzer](https://github.com/nolanderc/glsl_analyzer) | None | None |
141142
| go || [gopls](https://golang.org/x/tools/gopls) | None | [gopls](https://pkg.go.dev/golang.org/x/tools/gopls) |
143+
| graphql || None | None | None |
142144
| hare || None | None | None |
143145
| haskell || [haskell-language-server](https://github.com/haskell/haskell-language-server) | [hlint](https://github.com/ndmitchell/hlint) | [ormolu](https://github.com/tweag/ormolu) |
144146
| haxe || None | None | None |
@@ -159,6 +161,7 @@ via configuration files (for every feature: syntax highlighting, LSP, linter and
159161
| makefile || None | None | None |
160162
| markdown || None | None | None |
161163
| meson || None | None | None |
164+
| moonscript || None | None | None |
162165
| nelua || None | [nelua](https://nelua.io) | None |
163166
| nim || [nimlsp](https://github.com/PMunch/nimlsp) | [nim](https://nim-lang.org) | None |
164167
| objeck || None | None | None |
@@ -204,8 +207,9 @@ to function.
204207

205208
### Language support health
206209

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.
209213

210214
Check the health of all languages with `ecode --health` or ask for details about a specific language
211215
with `ecode --health-lang=<lang>`.
@@ -445,6 +449,8 @@ C and C++ LSP server example (using [clangd](https://clangd.llvm.org/))
445449
* **statusbar_display_branch**: Enables/disables an always visible status on the bottom statusbar.
446450
* **statusbar_display_modifications**: Enables/disables if the number of lines affected is displayed in the statusbar.
447451
* **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.
448454

449455
#### Git keybindings object keys
450456

@@ -692,7 +698,6 @@ you could need some special font (currently covers CJK languages).
692698

693699
## Current Limitations
694700

695-
* UTF-8 files only support (with BOM included) \*1
696701
* No font sub-pixel hinting \*2 \*3
697702
* No BiDi support \*2
698703
* No ligatures support \*4

0 commit comments

Comments
 (0)