mirror of https://github.com/helix-editor/helix
Fix some lints/docgen hints
parent
7d4f7eb4bd
commit
74e21e1b25
|
@ -50,7 +50,7 @@
|
||||||
| `:reload-all` | Discard changes and reload all documents from the source files. |
|
| `:reload-all` | Discard changes and reload all documents from the source files. |
|
||||||
| `:update`, `:u` | Write changes only if the file has been modified. |
|
| `:update`, `:u` | Write changes only if the file has been modified. |
|
||||||
| `:lsp-workspace-command` | Open workspace command picker |
|
| `:lsp-workspace-command` | Open workspace command picker |
|
||||||
| `:lsp-restart` | Restarts the language servers used by the currently opened file |
|
| `:lsp-restart` | Restarts the language servers used by the current doc |
|
||||||
| `:lsp-stop` | Stops the Language Server that is in use by the current doc |
|
| `:lsp-stop` | Stops the Language Server that is in use by the current doc |
|
||||||
| `:tree-sitter-scopes` | Display tree sitter scopes, primarily for theming and development. |
|
| `:tree-sitter-scopes` | Display tree sitter scopes, primarily for theming and development. |
|
||||||
| `:debug-start`, `:dbg` | Start a debug session from a given template with given parameters. |
|
| `:debug-start`, `:dbg` | Start a debug session from a given template with given parameters. |
|
||||||
|
|
|
@ -2,10 +2,7 @@ use crossterm::{
|
||||||
style::{Color, Print, Stylize},
|
style::{Color, Print, Stylize},
|
||||||
tty::IsTty,
|
tty::IsTty,
|
||||||
};
|
};
|
||||||
use helix_core::{
|
use helix_core::config::{default_syntax_loader, user_syntax_loader};
|
||||||
config::{default_syntax_loader, user_syntax_loader},
|
|
||||||
syntax::LanguageServerFeatureConfiguration,
|
|
||||||
};
|
|
||||||
use helix_loader::grammar::load_runtime_file;
|
use helix_loader::grammar::load_runtime_file;
|
||||||
use helix_view::clipboard::get_clipboard_provider;
|
use helix_view::clipboard::get_clipboard_provider;
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
|
|
|
@ -689,7 +689,7 @@ pub struct WhitespaceCharacters {
|
||||||
impl Default for WhitespaceCharacters {
|
impl Default for WhitespaceCharacters {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
space: '·', // U+00B7
|
space: '·', // U+00B7
|
||||||
nbsp: '⍽', // U+237D
|
nbsp: '⍽', // U+237D
|
||||||
tab: '→', // U+2192
|
tab: '→', // U+2192
|
||||||
newline: '⏎', // U+23CE
|
newline: '⏎', // U+23CE
|
||||||
|
|
Loading…
Reference in New Issue