aboutsummaryrefslogtreecommitdiff
path: root/helix-term/tests/integration.rs
diff options
context:
space:
mode:
authorwoojiq2023-08-08 13:17:29 +0000
committerGitHub2023-08-08 13:17:29 +0000
commitaa4d84a0b30fbe93882508c6d9dc8ca4c95341d0 (patch)
treece3615ac864edb7b1cf124c744e09d197ff81075 /helix-term/tests/integration.rs
parentc1c71bb90edf8fe43584bb103e72bd0e81d36100 (diff)
Align view for background buffer opened with `alt-ret` (#7691)
* fix(picker): `alt-ret' changes cursor pos of current file, not new one Closes #7673 * fix other pickers * symbol pickers * diagnostick pickers This is done using the already patched `jump_to_location` method. * fix global and jumplist pickers * use `view` as old_id; make `align_view` method of `Action` * test(picker): basic <alt-ret> functionality * fix: picker integrational test * fix nit Co-authored-by: Michael Davis <mcarsondavis@gmail.com> --------- Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
Diffstat (limited to 'helix-term/tests/integration.rs')
-rw-r--r--helix-term/tests/integration.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/tests/integration.rs b/helix-term/tests/integration.rs
index d77eefed..a62f0066 100644
--- a/helix-term/tests/integration.rs
+++ b/helix-term/tests/integration.rs
@@ -19,6 +19,7 @@ mod test {
mod auto_pairs;
mod commands;
mod movement;
+ mod picker;
mod prompt;
mod splits;
}