-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathHighlightOccurrences.lua
55 lines (44 loc) · 1.71 KB
/
HighlightOccurrences.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
-- Mark occurrences of the current word under the cursor
-- Adjust these values if desired
local indicator = 12 -- not sure what one is best to use but this works
editor1.IndicStyle[indicator] = INDIC_ROUNDBOX
editor2.IndicStyle[indicator] = INDIC_ROUNDBOX
editor1.IndicAlpha[indicator] = 20
editor2.IndicAlpha[indicator] = 20
editor1.IndicOutlineAlpha[indicator] = 20
editor2.IndicOutlineAlpha[indicator] = 20
npp.AddEventHandler("OnUpdateUI", function()
local function getRangeOnScreen()
local firstLine = editor.FirstVisibleLine
local lastLine = firstLine + editor.LinesOnScreen
local startPos = editor:PositionFromLine(firstLine)
local endPos = editor.LineEndPosition[lastLine]
return startPos, endPos
end
local function clearIndicatorOnScreen()
local s, e = getRangeOnScreen()
editor:IndicatorClearRange(s, e - s)
end
editor.IndicatorCurrent = indicator
if not editor.SelectionEmpty then
clearIndicatorOnScreen()
return false
end
local startWord = editor:WordStartPosition(editor.CurrentPos, true)
local endWord = editor:WordEndPosition(startWord, true)
-- Not a word
if startWord == endWord then
clearIndicatorOnScreen()
return false
end
local word = editor:textrange(startWord, endWord)
clearIndicatorOnScreen()
-- for each match on screen turn on the indicator
local startPos, endPos = getRangeOnScreen()
local s, e = editor:findtext(word, SCFIND_WHOLEWORD | SCFIND_MATCHCASE, startPos, endPos)
while s ~= nil do
editor:IndicatorFillRange(s, e - s)
s, e = editor:findtext(word, SCFIND_WHOLEWORD | SCFIND_MATCHCASE, e, endPos)
end
return false
end)