aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/selectionhighlight.lua13
1 files changed, 1 insertions, 12 deletions
diff --git a/plugins/selectionhighlight.lua b/plugins/selectionhighlight.lua
index 132e6aa..93ac0fb 100644
--- a/plugins/selectionhighlight.lua
+++ b/plugins/selectionhighlight.lua
@@ -5,9 +5,6 @@ local config = require "core.config"
-- originally written by luveti
--- Set to true to also highlight empty spaces
-config.highlight_spaces = false
-
local function draw_box(x, y, w, h, color)
local r = renderer.draw_rect
local s = math.ceil(SCALE)
@@ -23,15 +20,7 @@ local draw_line_body = DocView.draw_line_body
function DocView:draw_line_body(idx, x, y)
local line1, col1, line2, col2 = self.doc:get_selection(true)
local selection = self.doc:get_text(line1, col1, line2, col2)
- if
- line1 == line2 and col1 ~= col2
- and
- (
- config.highlight_spaces
- or
- not selection:match("^%s+$")
- )
- then
+ if line1 == line2 and col1 ~= col2 and not selection:match("^%s+$") then
local lh = self:get_line_height()
local selected_text = self.doc.lines[line1]:sub(col1, col2 - 1)
local current_line_text = self.doc.lines[idx]