summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2024-05-06 17:48:40 -0400
committerGlenn Smith <glenn@vector35.com>2024-05-06 17:48:40 -0400
commit6674992023316614773611132014859736534246 (patch)
treeede5029bf5ebce2e4ea0ff137eb96b52f25617c4
parentf428c5a7c4d01e4fe05e9b76a27bd9556f37f1d7 (diff)
Highlight matching indentation lines in linear view
-rw-r--r--binaryninjacore.h2
-rw-r--r--ui/action.h1
2 files changed, 3 insertions, 0 deletions
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();