Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Picker titles #12520

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Prev Previous commit
style: cargo fmt
nik-rev committed Feb 1, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 46ec06f08b5ba0bba14fed53b3e7ce86be847a8e
7 changes: 6 additions & 1 deletion helix-term/src/commands/lsp.rs
Original file line number Diff line number Diff line change
@@ -889,7 +889,12 @@ impl Display for ApplyEditErrorKind {
}

/// Precondition: `locations` should be non-empty.
fn goto_impl(title: &'static str, editor: &mut Editor, compositor: &mut Compositor, locations: Vec<Location>) {
fn goto_impl(
title: &'static str,
editor: &mut Editor,
compositor: &mut Compositor,
locations: Vec<Location>,
) {
let cwdir = helix_stdx::env::current_working_dir();

match locations.as_slice() {