diff options
author | Blaž Hrastnik | 2021-02-09 06:40:30 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-02-09 06:40:47 +0000 |
commit | d4b85ce18d8a9bb535eaeae9e2c7421ef81c81e9 (patch) | |
tree | f68c8fc1d4996f861af2c7966ac8c49dba4aa174 /helix-view/src/view.rs | |
parent | 755632f23113ccff66390de1e2c3476a51886b00 (diff) |
popup: wip work on completion popups
Diffstat (limited to 'helix-view/src/view.rs')
-rw-r--r-- | helix-view/src/view.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-view/src/view.rs b/helix-view/src/view.rs index 24b50d81..02eda72f 100644 --- a/helix-view/src/view.rs +++ b/helix-view/src/view.rs @@ -19,6 +19,7 @@ pub struct View { pub first_line: usize, pub area: Rect, } +// TODO: popups should be a thing on the view with a rect + text impl View { pub fn new(doc: Document) -> Result<Self, Error> { |