aboutsummaryrefslogtreecommitdiff
path: root/helix-view
diff options
context:
space:
mode:
authorDmitry Sharshakov2021-08-28 07:13:19 +0000
committerDmitry Sharshakov2021-08-28 07:13:19 +0000
commit890b51b568bcbd8fdbe594f5fcda77d82c18288a (patch)
tree12db1694a6e1c346856ef6eb45605fc8c3923889 /helix-view
parent3b87fce0cedc1cd2b4d5d41ddd76daa0dc3f7f2e (diff)
Paginated variables
Diffstat (limited to 'helix-view')
-rw-r--r--helix-view/src/editor.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs
index 295dfc0e..faaa5c3a 100644
--- a/helix-view/src/editor.rs
+++ b/helix-view/src/editor.rs
@@ -76,6 +76,8 @@ pub struct Editor {
pub debugger: Option<helix_dap::Client>,
pub debugger_events: SelectAll<UnboundedReceiverStream<helix_dap::Payload>>,
+ pub variables: Option<Vec<String>>,
+ pub variables_page: usize,
pub clipboard_provider: Box<dyn ClipboardProvider>,
@@ -116,6 +118,8 @@ impl Editor {
language_servers,
debugger: None,
debugger_events: SelectAll::new(),
+ variables: None,
+ variables_page: 0,
syn_loader: config_loader,
theme_loader: themes,
registers: Registers::default(),