diff options
author | Blaž Hrastnik | 2021-03-29 07:32:42 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-29 07:32:42 +0000 |
commit | 742b3a709fd7680d77bcda5ae08f2a9539b6a20e (patch) | |
tree | 38589e2b87ea31ee879bc48da3c5381830ad7e5c /helix-term/src/ui | |
parent | 0083a6c325d5bb9dc33a43e5b3d727bde0d7990b (diff) |
Store intra-files jumps (goto) on the jumplist.
Diffstat (limited to 'helix-term/src/ui')
-rw-r--r-- | helix-term/src/ui/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs index 8cb82fcb..0e38e598 100644 --- a/helix-term/src/ui/mod.rs +++ b/helix-term/src/ui/mod.rs @@ -49,7 +49,7 @@ pub fn regex_prompt( doc.set_selection(snapshot.clone()); } PromptEvent::Validate => { - // + // TODO: push_jump to store selection just before jump } PromptEvent::Update => { // skip empty input, TODO: trigger default |