summaryrefslogtreecommitdiff
path: root/lua/clever_f
diff options
context:
space:
mode:
authorJackson Moore <jacksonmoore@tuta.io>2026-09-04 13:42:11 +0200
committerJackson Moore <jacksonmoore@tuta.io>2026-09-04 13:42:11 +0200
commitebe532dc47dd094e33fa157a11ce192754eb473f (patch)
tree99e99adec1876205139fa3d687f7c2fbc615e2c2 /lua/clever_f
parentc67ce4226f350671875d458a90604c6c4dec83db (diff)
Carry current first-move state
Diffstat (limited to 'lua/clever_f')
-rw-r--r--lua/clever_f/sequence_coordinator.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/clever_f/sequence_coordinator.lua b/lua/clever_f/sequence_coordinator.lua
index 3f0b510..5a05f53 100644
--- a/lua/clever_f/sequence_coordinator.lua
+++ b/lua/clever_f/sequence_coordinator.lua
@@ -247,6 +247,9 @@ function SequenceCoordinator:fresh_primary_resolution(
target_plan = acquisition_result.target_plan,
motion_plan = acquisition_result.motion_plan,
effective_descriptor = initiating_descriptor,
+ first_move = coordinator_records[self].state:get_first_move(
+ invocation.context
+ ) == true,
skip_destination = acquisition_result.target_plan.kind
== domain.TargetPlanKind.EMPTY,
}
@@ -401,6 +404,7 @@ function SequenceCoordinator:stored_primary_resolution(
text_view = text_view,
search_scope = search_scope,
effective_descriptor = effective_descriptor,
+ first_move = state:get_first_move(invocation.context) == true,
}
resolution.restored_feedback = self:restore_repeated_feedback(resolution)
return resolution