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
I forgot to reference this issue but on dev you can use these functions now,
localactions=require("markview").actions;
--- Checks if markview is attached to a buffer or not.actions.__is_attached(buffer);
--- Checks if markview is enabled on a buffer or not.actions.__is_enabled(buffer);
--- Allows executing `callbacks` without needing to check if they exist or not.actions.__exec_callback(callback, ...);
If there is some advanced use case than you can also use these functions,
localmarkview=require("markview");
--- Cleans up invalid buffers from the list of attached buffer and detaches from them.markview.clean();
--- Checks if a buffer is safe to draw inmarkview.buf_is_safe(buffer);
--- Checks if a buffer can be attached to.markview.can_attach(buffer);
--- Checks if drawing preview is possible on a buffer.markview.can_draw(buffer);
The nature of the feature:
Description:
Dear the most awesome in-phone developer of all time,
could you expose an API like
The text was updated successfully, but these errors were encountered: