Skip to content

Commit

Permalink
biome: fix prefix nesting for transient v5
Browse files Browse the repository at this point in the history
  • Loading branch information
SqrtMinusOne committed Jan 16, 2024
1 parent 0622e4d commit c879e80
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions biome-multi.el
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ This is a list of forms as defined by `biome-query-current'.")
(biome-multi--transient-report-infix)]
["Queries"
:class transient-row
("a" "Add query" biome-multi-add-query :transient transient--do-replace)
("e" "Edit query" biome-multi-edit :transient t)
("a" "Add query" biome-multi-add-query :transient transient--do-stack)
("e" "Edit query" biome-multi-edit :transient transient--do-stack)
("d" "Delete query" biome-multi-remove :transient t)]
["Actions"
:class transient-row
Expand Down
4 changes: 2 additions & 2 deletions biome-query.el
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ list of parent sections."
(not (member param biome-query-groups)))
(biome-query--section section ',parents)
(message "Need to activate group: %s" param))))
:transient transient--do-replace))
:transient transient--do-stack))
sections)])))

(defmacro biome-query--with-layout-cache (cache-key &rest body)
Expand Down Expand Up @@ -1025,7 +1025,7 @@ SECTION is a form as defined in `biome-api-parse--page'."
,name
(lambda () (interactive)
(biome-query--section-open ,name))
:transient transient--do-replace))))]
:transient transient--do-stack))))]
["Actions"
:class transient-row
("r" "Resume" biome-resume :transient transient--do-replace)
Expand Down

0 comments on commit c879e80

Please sign in to comment.