From 69547591d228a00140889df0b7fccda6e597c8d0 Mon Sep 17 00:00:00 2001 From: jgmdev Date: Fri, 11 Jun 2021 17:35:46 -0400 Subject: Removed configuration to enable selecting empty spaces. --- plugins/selectionhighlight.lua | 13 +------------ 1 file changed, 1 insertion(+), 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] -- cgit v1.2.3