branch: externals/indent-bars commit 098a5aad799df23b105eced76ebdb63e2d5f7ff4 Author: JD Smith <93749+jdtsm...@users.noreply.github.com> Commit: JD Smith <93749+jdtsm...@users.noreply.github.com>
Remove clip-win scope slot --- indent-bars-ts.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/indent-bars-ts.el b/indent-bars-ts.el index 35578ad191..4ae1a0acd0 100644 --- a/indent-bars-ts.el +++ b/indent-bars-ts.el @@ -278,12 +278,11 @@ mentioned in `indent-bars-treesit-ignore-blank-lines-types'." "A structure for tracking treesitter-based scope information." ( range (cons (point-min-marker) (point-min-marker)) :type cons :documentation "The current scope node's range.") - ( clip-win (cons (point-max-marker) (point-max-marker)) :type cons - :documentation "The clipping window for the current scope.") ( start-bars 0 :type integer :documentation "The number of bars shown at start of current scope.") ( invalid-ranges nil :type list - :documentation "List of current invalid ranges -- (start . end) conses.") + :documentation "List of current invalid ranges. +One or more (start . end) conses.") ( query nil :type ts-query :documentation "The treesitter scope query object."))