aboutsummaryrefslogtreecommitdiff
path: root/plugins/autowrap.lua
blob: a7a9765af1e7f70b65ff7e2359962a67b2715add (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
-- mod-version:3
local core = require "core"
local config = require "core.config"
local command = require "core.command"
local common = require "core.common"
local DocView = require "core.docview"

config.plugins.autowrap = common.merge({
  enabled = false,
  files = { "%.md$", "%.txt$" },
  -- The config specification used by the settings gui
  config_spec = {
    name = "Auto Wrap",
    {
      label = "Enable",
      description = "Activates text auto wrapping by default.",
      path = "enabled",
      type = "toggle",
      default = false
    },
    {
      label = "Files",
      description = "List of Lua patterns matching files to auto wrap.",
      path = "files",
      type = "list_strings",
      default = { "%.md$", "%.txt$" },
    }
  }
}, config.plugins.autowrap)


local on_text_input = DocView.on_text_input

DocView.on_text_input = function(self, ...)
  on_text_input(self, ...)

  if not config.plugins.autowrap.enabled then return end

  -- early-exit if the filename does not match a file type pattern
  local filename = self.doc.filename or ""
  local matched = false
  for _, ptn in ipairs(config.plugins.autowrap.files) do
    if filename:match(ptn) then
      matched = true
      break
    end
  end
  if not matched then return end

  -- do automatic reflow on line if we're typing at the end of the line and have
  -- reached the line limit
  local line, col = self.doc:get_selection()
  local text = self.doc:get_text(line, 1, line, math.huge)
  if #text >= config.line_limit and col > #text then
    command.perform("doc:select-lines")
    command.perform("reflow:reflow")
    command.perform("doc:move-to-next-char")
    command.perform("doc:move-to-end-of-line")
  end
end

command.add(nil, {
  ["auto-wrap:toggle"] = function()
    config.plugins.autowrap.enabled = not config.plugins.autowrap.enabled
    if config.plugins.autowrap.enabled then
      core.log("Auto wrap: on")
    else
      core.log("Auto wrap: off")
    end
  end
})