mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-23 01:46:18 +04:00
Clippy lint
This commit is contained in:
parent
081e0ae8ae
commit
4f77d80e74
15
TODO.md
15
TODO.md
@ -8,16 +8,7 @@
|
|||||||
------
|
------
|
||||||
|
|
||||||
1
|
1
|
||||||
- [x] selection mode
|
|
||||||
- [x] % for whole doc selection
|
|
||||||
- [x] vertical splits
|
|
||||||
- [x] input counts (30j)
|
|
||||||
- [x] input counts for b, w, e
|
|
||||||
- [ ] respect view fullscreen flag
|
- [ ] respect view fullscreen flag
|
||||||
- [x] retain horiz when moving vertically
|
|
||||||
- [w] retain horiz when moving via ctrl-u/d
|
|
||||||
- [x] deindent
|
|
||||||
- [x] update lsp on redo/undo
|
|
||||||
- [ ] Implement marks (superset of Selection/Range)
|
- [ ] Implement marks (superset of Selection/Range)
|
||||||
- [ ] ctrl-v/ctrl-x on file picker
|
- [ ] ctrl-v/ctrl-x on file picker
|
||||||
- [ ] linewise selection work
|
- [ ] linewise selection work
|
||||||
@ -25,17 +16,13 @@
|
|||||||
- [ ] CI binary builds
|
- [ ] CI binary builds
|
||||||
|
|
||||||
- [ ] regex search / select next
|
- [ ] regex search / select next
|
||||||
- [x] f / t mappings
|
|
||||||
- [ ] open_above (O) command
|
- [ ] open_above (O) command
|
||||||
- [ ] = for auto indent line/selection
|
- [ ] = for auto indent line/selection
|
||||||
- [x] q should only close the view, if all are closed, close the editor
|
- [x] q should only close the view, if all are closed, close the editor
|
||||||
- [ ] buffers should sit on editor.buffers, view simply refs them
|
- [ ] buffers should sit on editor.buffers, view simply refs them
|
||||||
|
- [ ] yank on delete
|
||||||
|
|
||||||
- [ ] pressing b at start of file needs to not crash
|
|
||||||
- [ ] draw separator line between views
|
- [ ] draw separator line between views
|
||||||
- [ ] command to drop all selections except primary
|
|
||||||
|
|
||||||
- [ ] diagnostic severity
|
|
||||||
|
|
||||||
- [ ] lsp: signature help
|
- [ ] lsp: signature help
|
||||||
- [x] lsp: hover
|
- [x] lsp: hover
|
||||||
|
@ -178,7 +178,7 @@ pub struct Syntax {
|
|||||||
pub(crate) root_layer: LanguageLayer,
|
pub(crate) root_layer: LanguageLayer,
|
||||||
}
|
}
|
||||||
|
|
||||||
fn byte_range_to_str<'a>(range: std::ops::Range<usize>, source: RopeSlice<'a>) -> Cow<'a, str> {
|
fn byte_range_to_str(range: std::ops::Range<usize>, source: RopeSlice) -> Cow<str> {
|
||||||
let start_char = source.byte_to_char(range.start);
|
let start_char = source.byte_to_char(range.start);
|
||||||
let end_char = source.byte_to_char(range.end);
|
let end_char = source.byte_to_char(range.end);
|
||||||
Cow::from(source.slice(start_char..end_char))
|
Cow::from(source.slice(start_char..end_char))
|
||||||
|
Loading…
Reference in New Issue
Block a user