mirror of https://github.com/helix-editor/helix
parent
e2a23ac0b5
commit
64bb1f7563
|
@ -3,7 +3,7 @@ use crate::{
|
||||||
commands,
|
commands,
|
||||||
compositor::Compositor,
|
compositor::Compositor,
|
||||||
job::Callback,
|
job::Callback,
|
||||||
ui::{FilePicker, Picker, Prompt, PromptEvent},
|
ui::{FilePicker, Picker, Popup, Prompt, PromptEvent, Text},
|
||||||
};
|
};
|
||||||
use helix_core::{
|
use helix_core::{
|
||||||
syntax::{DebugArgumentValue, DebugConfigCompletion},
|
syntax::{DebugArgumentValue, DebugConfigCompletion},
|
||||||
|
@ -518,15 +518,14 @@ pub fn dap_variables(cx: &mut Context) {
|
||||||
Some(data_type) => format!("{} ", data_type),
|
Some(data_type) => format!("{} ", data_type),
|
||||||
None => "".to_owned(),
|
None => "".to_owned(),
|
||||||
};
|
};
|
||||||
variables.push(format!("{}{} = {}\n", prefix, var.name, var.value));
|
variables.push(format!("{}{} = {}", prefix, var.name, var.value));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if !variables.is_empty() {
|
let contents = Text::new(variables.join("\n"));
|
||||||
cx.editor.variables = Some(variables);
|
let popup = Popup::new(contents);
|
||||||
cx.editor.variables_page = 0;
|
cx.push_layer(Box::new(popup));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn dap_terminate(cx: &mut Context) {
|
pub fn dap_terminate(cx: &mut Context) {
|
||||||
|
|
|
@ -906,30 +906,6 @@ impl EditorView {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
|
||||||
if cxt.editor.variables.is_some() {
|
|
||||||
match event {
|
|
||||||
KeyEvent {
|
|
||||||
code: KeyCode::Char('h'),
|
|
||||||
..
|
|
||||||
} => {
|
|
||||||
cxt.editor.variables_page = cxt.editor.variables_page.saturating_sub(1);
|
|
||||||
}
|
|
||||||
KeyEvent {
|
|
||||||
code: KeyCode::Char('l'),
|
|
||||||
..
|
|
||||||
} => {
|
|
||||||
cxt.editor.variables_page = cxt.editor.variables_page.saturating_add(1);
|
|
||||||
}
|
|
||||||
KeyEvent {
|
|
||||||
code: KeyCode::Esc, ..
|
|
||||||
} => {
|
|
||||||
cxt.editor.variables = None;
|
|
||||||
}
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
return None;
|
|
||||||
}
|
|
||||||
|
|
||||||
let key_result = self.keymaps.get_mut(&mode).unwrap().get(event);
|
let key_result = self.keymaps.get_mut(&mode).unwrap().get(event);
|
||||||
self.autoinfo = key_result.sticky.map(|node| node.infobox());
|
self.autoinfo = key_result.sticky.map(|node| node.infobox());
|
||||||
|
|
||||||
|
@ -1081,7 +1057,10 @@ impl EditorView {
|
||||||
if let Some((line, _, view_id)) = result {
|
if let Some((line, _, view_id)) = result {
|
||||||
editor.tree.focus = view_id;
|
editor.tree.focus = view_id;
|
||||||
|
|
||||||
let doc = editor.documents.get_mut(&editor.tree.get(view_id).doc).unwrap();
|
let doc = editor
|
||||||
|
.documents
|
||||||
|
.get_mut(&editor.tree.get(view_id).doc)
|
||||||
|
.unwrap();
|
||||||
if let Ok(pos) = doc.text().try_line_to_char(line) {
|
if let Ok(pos) = doc.text().try_line_to_char(line) {
|
||||||
doc.set_selection(view_id, Selection::point(pos));
|
doc.set_selection(view_id, Selection::point(pos));
|
||||||
commands::dap_toggle_breakpoint(cxt);
|
commands::dap_toggle_breakpoint(cxt);
|
||||||
|
@ -1180,7 +1159,11 @@ impl EditorView {
|
||||||
if let Some((line, _, view_id)) = result {
|
if let Some((line, _, view_id)) = result {
|
||||||
cxt.editor.tree.focus = view_id;
|
cxt.editor.tree.focus = view_id;
|
||||||
|
|
||||||
let doc = cxt.editor.documents.get_mut(&cxt.editor.tree.get(view_id).doc).unwrap();
|
let doc = cxt
|
||||||
|
.editor
|
||||||
|
.documents
|
||||||
|
.get_mut(&cxt.editor.tree.get(view_id).doc)
|
||||||
|
.unwrap();
|
||||||
if let Ok(pos) = doc.text().try_line_to_char(line) {
|
if let Ok(pos) = doc.text().try_line_to_char(line) {
|
||||||
doc.set_selection(view_id, Selection::point(pos));
|
doc.set_selection(view_id, Selection::point(pos));
|
||||||
if modifiers == crossterm::event::KeyModifiers::ALT {
|
if modifiers == crossterm::event::KeyModifiers::ALT {
|
||||||
|
@ -1378,35 +1361,6 @@ impl Component for EditorView {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(ref vars) = cx.editor.variables {
|
|
||||||
let mut text = String::new();
|
|
||||||
let mut height = 0;
|
|
||||||
let mut max_len = 20;
|
|
||||||
|
|
||||||
let per_page = 15;
|
|
||||||
let num_vars = vars.len();
|
|
||||||
let start = (per_page * cx.editor.variables_page).min(num_vars);
|
|
||||||
let end = (start + per_page).min(num_vars);
|
|
||||||
for line in vars[start..end].to_vec() {
|
|
||||||
max_len = max_len.max(line.len() as u16);
|
|
||||||
height += 1;
|
|
||||||
text.push_str(&line);
|
|
||||||
}
|
|
||||||
|
|
||||||
if vars.len() > per_page {
|
|
||||||
text += "\nMove h, l";
|
|
||||||
height += 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut info = Info {
|
|
||||||
height: 20.min(height + 2),
|
|
||||||
width: 70.min(max_len),
|
|
||||||
title: format!("{} variables", num_vars),
|
|
||||||
text: text + "\nExit Esc",
|
|
||||||
};
|
|
||||||
info.render(area, surface, cx);
|
|
||||||
}
|
|
||||||
|
|
||||||
if cx.editor.config.auto_info {
|
if cx.editor.config.auto_info {
|
||||||
if let Some(ref mut info) = self.autoinfo {
|
if let Some(ref mut info) = self.autoinfo {
|
||||||
info.render(area, surface, cx);
|
info.render(area, surface, cx);
|
||||||
|
|
|
@ -11,8 +11,8 @@ use futures_util::stream::select_all::SelectAll;
|
||||||
use tokio_stream::wrappers::UnboundedReceiverStream;
|
use tokio_stream::wrappers::UnboundedReceiverStream;
|
||||||
|
|
||||||
use std::{
|
use std::{
|
||||||
collections::HashMap,
|
|
||||||
collections::BTreeMap,
|
collections::BTreeMap,
|
||||||
|
collections::HashMap,
|
||||||
path::{Path, PathBuf},
|
path::{Path, PathBuf},
|
||||||
pin::Pin,
|
pin::Pin,
|
||||||
sync::Arc,
|
sync::Arc,
|
||||||
|
@ -127,8 +127,6 @@ pub struct Editor {
|
||||||
pub debugger_events: SelectAll<UnboundedReceiverStream<dap::Payload>>,
|
pub debugger_events: SelectAll<UnboundedReceiverStream<dap::Payload>>,
|
||||||
pub breakpoints: HashMap<PathBuf, Vec<dap::SourceBreakpoint>>,
|
pub breakpoints: HashMap<PathBuf, Vec<dap::SourceBreakpoint>>,
|
||||||
pub debug_config_completions: Vec<DebugConfigCompletion>,
|
pub debug_config_completions: Vec<DebugConfigCompletion>,
|
||||||
pub variables: Option<Vec<String>>,
|
|
||||||
pub variables_page: usize,
|
|
||||||
|
|
||||||
pub clipboard_provider: Box<dyn ClipboardProvider>,
|
pub clipboard_provider: Box<dyn ClipboardProvider>,
|
||||||
|
|
||||||
|
@ -175,8 +173,6 @@ impl Editor {
|
||||||
debugger_events: SelectAll::new(),
|
debugger_events: SelectAll::new(),
|
||||||
breakpoints: HashMap::new(),
|
breakpoints: HashMap::new(),
|
||||||
debug_config_completions: Vec::new(),
|
debug_config_completions: Vec::new(),
|
||||||
variables: None,
|
|
||||||
variables_page: 0,
|
|
||||||
syn_loader: config_loader,
|
syn_loader: config_loader,
|
||||||
theme_loader: themes,
|
theme_loader: themes,
|
||||||
registers: Registers::default(),
|
registers: Registers::default(),
|
||||||
|
|
Loading…
Reference in New Issue