You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just running kak -n -e 'buffer *debug*; debug faces' works fine, it's wrapping it in a command that causes the problem.
git bisect indicates 1c71fc0 as the cause, "Add local scope to user commands", from 2024-04-29. debug faces calls context.faces().flatten_faces() to get the list of faces to write, which I guess is empty inside a local context rather than inheriting from the parent context.
The text was updated successfully, but these errors were encountered:
Version of Kakoune
v2024.05.18-188-g9c458c50
Reproducer
Outcome
The
*debug*
buffer contains:Expectations
The
*debug*
buffer contains:Additional information
Just running
kak -n -e 'buffer *debug*; debug faces'
works fine, it's wrapping it in a command that causes the problem.git bisect
indicates 1c71fc0 as the cause, "Add local scope to user commands", from 2024-04-29.debug faces
callscontext.faces().flatten_faces()
to get the list of faces to write, which I guess is empty inside a local context rather than inheriting from the parent context.The text was updated successfully, but these errors were encountered: