From 6674992023316614773611132014859736534246 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Mon, 6 May 2024 17:48:40 -0400 Subject: Highlight matching indentation lines in linear view --- binaryninjacore.h | 2 ++ ui/action.h | 1 + 2 files changed, 3 insertions(+) diff --git a/binaryninjacore.h b/binaryninjacore.h index ab638f3b..5609d72b 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -1917,6 +1917,8 @@ extern "C" CommentColor, OperationColor, BaseStructureNameColor, + IndentationLineColor, + IndentationLineHighlightColor, // Script console colors ScriptConsoleOutputColor, diff --git a/ui/action.h b/ui/action.h index 766c240b..c7357fcf 100644 --- a/ui/action.h +++ b/ui/action.h @@ -43,6 +43,7 @@ struct BINARYNINJAUIAPI HighlightTokenState BinaryNinja::Variable localVar; size_t tokenIndex; size_t characterIndex; + size_t indentGroup; HighlightTokenState(); -- cgit v1.3.1