/usr/share/gps/library/highlight_selection.py is in gnat-gps-common 5.0-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | """
When a text is selected, all other occurrences in the same file are
also highlighted
"""
from GPS import *
from gps_utils.highlighter import *
import text_utils
min_length = 3
# Minimal length of the selection before we start highlighting.
# For efficiency reasons, it isn't recommended to highlight when there is
# a single character selected.
class Editor_Highlighter (Text_Highlighter):
def __init__ (self, name, text, buffer,
context_lines=0,
fg_color="grey", bg_color="",
weight="", # or "bold", "normal", "light"
style="", # or "normal", "oblique", "italic"
editable=True): # or None
self.buffer = buffer
Text_Highlighter.__init__ (
self, name=name, text=text, context_lines=context_lines,
whole_word=True,
fg_color=fg_color, bg_color=bg_color,
weight=weight, style=style, editable=editable)
def must_highlight (self, buffer):
return self.buffer == buffer
def on_location_changed (hook, file, line, column):
buffer = EditorBuffer.get (file)
if not buffer:
return
start = buffer.selection_start ()
end = buffer.selection_end ()
try:
# Remove highlighting for the previous selection
buffer.selection_highlighter.stop ()
buffer.selection_highlighter = None
except:
pass
# Only highlight when text is on a single line
if start == end or start.line() != end.line():
return
# Highlight all other occurrences of the selection if needed. This
# automatically removes any previous highlighting done for the selection.
# For efficiency, don't do anything if there are less than two characters
# selected
if start != end and abs (start.offset() - end.offset()) >= min_length:
buffer.selection_highlighter = Editor_Highlighter (
name="selection_occurrences",
text = buffer.get_chars (start, end - 1),
buffer = buffer,
bg_color = Preference ("Plugins/highlight_selection/bgcolor").get (),
fg_color = Preference ("Plugins/highlight_selection/fgcolor").get (),
weight = "normal")
elif Preference ("Plugins/highlight_selection/onentity").get ():
# Do nothing if buffer is empty
if buffer.end_of_buffer().offset() == 0:
return
start = text_utils.goto_word_start (start)
end = text_utils.goto_word_end (end)
if abs (start.offset() - end.offset()) >= min_length:
buffer.selection_highlighter = Editor_Highlighter (
name="selection_occurrences",
text = buffer.get_chars (start, end - 1).replace ("\n", "\\n"),
buffer = buffer,
bg_color=Preference ("Plugins/highlight_selection/bgcolor").get (),
fg_color=Preference ("Plugins/highlight_selection/fgcolor").get (),
weight = "normal")
Preference ("Plugins/highlight_selection/bgcolor").create (
"Background color", "color",
"Background color used to highlight other occurrences of the current"
+ " selection", "#CFCFFA")
Preference ("Plugins/highlight_selection/fgcolor").create (
"Foreground color", "color",
"Foreground color used to highlight other occurrences of the current"
+ " selection", "black")
Preference ("Plugins/highlight_selection/onentity").create (
"Show current entity", "boolean",
"Whether to highlight occurrences of the current entity, even if there"
+ " is no explicit selection",
True)
Hook ("location_changed").add (on_location_changed)
|