add config.lineguide option

This commit is contained in:
takase1121
2021-08-02 09:57:21 +08:00
parent 135ad072bd
commit 3b3677ca4b
+4 -2
View File
@@ -6,9 +6,10 @@ local DocView = require "core.docview"
local draw_overlay = DocView.draw_overlay local draw_overlay = DocView.draw_overlay
function DocView:draw_overlay(...) function DocView:draw_overlay(...)
local ns = ("n"):rep(config.line_limit) if config.lineguide then
local ns = self:get_font():get_width_subpixel("n") * config.line_limit
local ss = self:get_font():subpixel_scale() local ss = self:get_font():subpixel_scale()
local offset = self:get_font():get_width_subpixel(ns) / ss local offset = ns / ss
local x = self:get_line_screen_position(1) + offset local x = self:get_line_screen_position(1) + offset
local y = self.position.y local y = self.position.y
local w = math.ceil(SCALE * 1) local w = math.ceil(SCALE * 1)
@@ -16,6 +17,7 @@ function DocView:draw_overlay(...)
local color = style.guide or style.selection local color = style.guide or style.selection
renderer.draw_rect(x, y, w, h, color) renderer.draw_rect(x, y, w, h, color)
end
draw_overlay(self, ...) draw_overlay(self, ...)
end end