aboutsummaryrefslogtreecommitdiff
path: root/plugins/drawwhitespace.lua
blob: 016d18c5d7df9242d1a08ac6cded28506436f03d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
local config = require "core.config"
local style = require "core.style"
local DocView = require "core.docview"

-- originally written by luveti

config.whitespace_map = { [" "] = "·", ["\t"] = "»" }

local draw_line_text = DocView.draw_line_text

function DocView:draw_line_text(idx, x, y)
  draw_line_text(self, idx, x, y)

  local text = self.doc.lines[idx]
  local tx, ty = x, y + self:get_line_text_y_offset()
  local font = self:get_font()
  local color = style.whitespace or style.syntax.comment
  local map = config.whitespace_map

  for i = 1, #text do
    local chr = text:sub(i, i)
    local rep = map[chr]
    if rep then
      renderer.draw_text(font, rep, tx, ty, color)
    end
    tx = tx + font:get_width(chr)
  end
end