aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorrxi <rxi@users.noreply.github.com>2020-05-09 15:09:59 +0100
committerrxi <rxi@users.noreply.github.com>2020-05-09 15:09:59 +0100
commitf9f6bb41ed18dc3c6944f7a51b777d334fc69b75 (patch)
tree56f4dfbd2d115fdb49a2ef1aeb265703e653d129 /plugins
parent35d8cf10354e1da855dc1b0761b2f5ffbb8ed0ac (diff)
downloadlite-xl-plugins-f9f6bb41ed18dc3c6944f7a51b777d334fc69b75.tar.gz
lite-xl-plugins-f9f6bb41ed18dc3c6944f7a51b777d334fc69b75.zip
Added plugin `lineguide`
Diffstat (limited to 'plugins')
-rw-r--r--plugins/lineguide.lua18
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/lineguide.lua b/plugins/lineguide.lua
new file mode 100644
index 0000000..fc24567
--- /dev/null
+++ b/plugins/lineguide.lua
@@ -0,0 +1,18 @@
+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 offset = self:get_font():get_width("n") * config.line_limit
+ 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