aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2021-11-23 22:35:11 -0500
committerFrancesco Abbate <francesco.bbt@gmail.com>2021-12-20 08:43:48 +0100
commite512c576379fd806f83a89ef0a274f6ed95920d7 (patch)
tree48f25971cdf28a2efdbea19a37bb5e9f8535bda1
parent23f83857c5634a3db3c9945261145d0b9f4f6705 (diff)
downloadlite-xl-e512c576379fd806f83a89ef0a274f6ed95920d7.tar.gz
lite-xl-e512c576379fd806f83a89ef0a274f6ed95920d7.zip
Added an exclusion for lineguide in the commandview.
-rw-r--r--data/plugins/lineguide.lua24
1 files changed, 13 insertions, 11 deletions
diff --git a/data/plugins/lineguide.lua b/data/plugins/lineguide.lua
index 61debbff..41109e4f 100644
--- a/data/plugins/lineguide.lua
+++ b/data/plugins/lineguide.lua
@@ -2,20 +2,22 @@
local config = require "core.config"
local style = require "core.style"
local DocView = require "core.docview"
+local CommandView = require "core.commandview"
local draw_overlay = DocView.draw_overlay
function DocView:draw_overlay(...)
- local ns = ("n"):rep(config.line_limit)
- local ss = self:get_font():subpixel_scale()
- local offset = self:get_font():get_width_subpixel(ns) / ss
- local x = self:get_line_screen_position(1) + offset
- local y = self.position.y
- local w = math.ceil(SCALE * 1)
- local h = self.size.y
-
- local color = style.guide or style.selection
- renderer.draw_rect(x, y, w, h, color)
-
+ if not self:is(CommandView) then
+ local ns = ("n"):rep(config.line_limit)
+ local ss = self:get_font():subpixel_scale()
+ local offset = self:get_font():get_width_subpixel(ns) / ss
+ local x = self:get_line_screen_position(1) + offset
+ local y = self.position.y
+ local w = math.ceil(SCALE * 1)
+ local h = self.size.y
+
+ local color = style.guide or style.selection
+ renderer.draw_rect(x, y, w, h, color)
+ end
draw_overlay(self, ...)
end