diff options
author | Blaž Hrastnik | 2020-09-29 09:02:27 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-09-29 09:07:05 +0000 |
commit | 3feb00283df92b8865c9cf7baba0e2ab06dcc028 (patch) | |
tree | c174b36de7866b7710a7f29cca95d9f6be66dcaa /helix-view/src/view.rs | |
parent | 1bb01d27aed8b046ff1cb41d4932c303d3b4ad0d (diff) |
clippy warnings
Diffstat (limited to 'helix-view/src/view.rs')
-rw-r--r-- | helix-view/src/view.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-view/src/view.rs b/helix-view/src/view.rs index 0900b0ca..d96752d0 100644 --- a/helix-view/src/view.rs +++ b/helix-view/src/view.rs @@ -13,11 +13,11 @@ pub struct View { } impl View { - pub fn open(path: PathBuf, size: (u16, u16)) -> Result<View, Error> { + pub fn open(path: PathBuf, size: (u16, u16)) -> Result<Self, Error> { let theme = Theme::default(); let state = State::load(path, theme.scopes())?; - let view = View { + let view = Self { state, first_line: 0, size, // TODO: pass in from term |