diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2021-06-20 17:21:53 -0400 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2021-08-17 09:52:24 -0400 |
commit | ad15f82e10a43bbe85a241c87bd01529ace386fd (patch) | |
tree | 218ade5895f5d0697860c8537c809a2edd855f8f /plugins/lineguide.lua | |
parent | 2f1c6d8a1dc2a5a44fc6a0781c551ca50211a769 (diff) | |
download | lite-xl-plugins-ad15f82e10a43bbe85a241c87bd01529ace386fd.tar.gz lite-xl-plugins-ad15f82e10a43bbe85a241c87bd01529ace386fd.zip |
Removed lineguide from plugins folder.
Diffstat (limited to 'plugins/lineguide.lua')
-rw-r--r-- | plugins/lineguide.lua | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/plugins/lineguide.lua b/plugins/lineguide.lua deleted file mode 100644 index 2cf0b42..0000000 --- a/plugins/lineguide.lua +++ /dev/null @@ -1,21 +0,0 @@ --- mod-version:1 -- lite-xl 1.16 -local config = require "core.config" -local style = require "core.style" -local DocView = require "core.docview" - -local draw = DocView.draw - -function DocView:draw(...) - draw(self, ...) - - 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 |