diff options
author | Pascal Kuthe | 2023-02-07 14:59:04 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2023-03-29 03:57:30 +0000 |
commit | 5b3dd6a678ba138ea21d7d5dd8d3c8a53c7a6d3b (patch) | |
tree | 038502a6e1d4f7b4a90ac407f3debf00ede211c1 /helix-term/src/commands.rs | |
parent | 2d10a429ebf7abe5af184b6227346377dc0523e8 (diff) |
implement proper lsp-workspace support
fix typo
Co-authored-by: LeoniePhiline <22329650+LeoniePhiline@users.noreply.github.com>
Diffstat (limited to 'helix-term/src/commands.rs')
-rw-r--r-- | helix-term/src/commands.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index e4d0d753..0f53fdc9 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -2419,7 +2419,7 @@ fn append_mode(cx: &mut Context) { } fn file_picker(cx: &mut Context) { - let root = find_workspace(); + let root = find_workspace().0; let picker = ui::file_picker(root, &cx.editor.config()); cx.push_layer(Box::new(overlayed(picker))); } |