Skip to content

Commit ce20224

Browse files
committed
feat(configs): add support to makefile rules
1 parent e21d01a commit ce20224

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -821,6 +821,7 @@ used by the plugin:
821821
Regex = '',
822822
Repeat = '󰑖 ',
823823
Return = '󰌑 ',
824+
Rule = '󰅩 ',
824825
RuleSet = '󰅩 ',
825826
Scope = '󰅩 ',
826827
Section = '󰅩 ',
@@ -1105,6 +1106,7 @@ each sources.
11051106
'reference',
11061107
'repeat',
11071108
'return_statement',
1109+
'rule',
11081110
'rule_set',
11091111
'scope',
11101112
'section',

doc/dropbar.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*dropbar.txt* Last change: 2025 September 07
1+
*dropbar.txt* Last change: 2025 October 05
22

33
==============================================================================
44
INTRODUCTION *dropbar-introduction*
@@ -774,6 +774,7 @@ by the plugin:
774774
Regex = ' ',
775775
Repeat = '󰑖 ',
776776
Return = '󰌑 ',
777+
Rule = '󰅩 ',
777778
RuleSet = '󰅩 ',
778779
Scope = '󰅩 ',
779780
Section = '󰅩 ',
@@ -1049,6 +1050,7 @@ TREESITTER *dropbar-treesitter*
10491050
'reference',
10501051
'repeat',
10511052
'return_statement',
1053+
'rule',
10521054
'rule_set',
10531055
'scope',
10541056
'section',

lua/dropbar/configs.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ M.opts = {
111111
Regex = '',
112112
Repeat = '󰑖 ',
113113
Return = '󰌑 ',
114+
Rule = '󰅩 ',
114115
RuleSet = '󰅩 ',
115116
Scope = '󰅩 ',
116117
Section = '󰅩 ',
@@ -755,6 +756,7 @@ M.opts = {
755756
'reference',
756757
'repeat',
757758
'return_statement',
759+
'rule',
758760
'rule_set',
759761
'scope',
760762
'section',

lua/dropbar/hlgroups.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ local hlgroups = {
5555
DropBarIconKindReference = { link = 'DropBarIconKindDefault' },
5656
DropBarIconKindRepeat = { link = 'Repeat' },
5757
DropBarIconKindReturnStatement = { link = '@keyword.return' },
58+
DropBarIconKindRule = { link = '@lsp.type.namespace' },
5859
DropBarIconKindRuleSet = { link = '@lsp.type.namespace' },
5960
DropBarIconKindScope = { link = '@lsp.type.namespace' },
6061
DropBarIconKindSection = { link = 'Title' },

0 commit comments

Comments
 (0)