123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- local core = require "core"
- local command = require "core.command"
- local common = require "core.common"
- local config = require "core.config"
- local translate = require "core.doc.translate"
- local search = require "core.doc.search"
- local DocView = require "core.docview"
- local function dv()
- return core.active_view
- end
- local function doc()
- return core.active_view.doc
- end
- local function get_indent_string()
- if config.tab_type == "hard" then
- return "\t"
- end
- return string.rep(" ", config.indent_size)
- end
- local function insert_at_start_of_selected_lines(text)
- local line1, col1, line2, col2, swap = doc():get_selection(true)
- for line = line1, line2 do
- doc():insert(line, 1, text)
- end
- doc():set_selection(line1, col1 + #text, line2, col2 + #text, swap)
- end
- local function remove_from_start_of_selected_lines(text)
- local line1, col1, line2, col2, swap = doc():get_selection(true)
- for line = line1, line2 do
- if doc().lines[line]:sub(1, #text) == text then
- doc():remove(line, 1, line, #text + 1)
- if line == line1 then col1 = col1 - #text end
- if line == line2 then col2 = col2 - #text end
- end
- end
- doc():set_selection(line1, col1, line2, col2, swap)
- end
- local function append_line_if_last_line(line)
- if line >= #doc().lines then
- doc():insert(line, math.huge, "\n")
- end
- end
- local function save(filename)
- doc():save(filename)
- core.log("Saved %q", doc().filename)
- end
- local commands = {
- ["doc:undo"] = function()
- doc():undo()
- end,
- ["doc:redo"] = function()
- doc():redo()
- end,
- ["doc:cut"] = function()
- local text = doc():get_text(doc():get_selection())
- system.set_clipboard(text)
- doc():delete_to(0)
- end,
- ["doc:copy"] = function()
- local text = doc():get_text(doc():get_selection())
- system.set_clipboard(text)
- end,
- ["doc:paste"] = function()
- doc():text_input(system.get_clipboard())
- end,
- ["doc:newline"] = function()
- local line, col = doc():get_selection()
- local indent = doc().lines[line]:match("^[\t ]*")
- if col <= #indent then
- indent = indent:sub(#indent + 2 - col)
- end
- doc():text_input("\n" .. indent)
- end,
- ["doc:newline-below"] = function()
- local line = doc():get_selection()
- local indent = doc().lines[line]:match("^[\t ]*")
- doc():insert(line, math.huge, "\n" .. indent)
- doc():set_selection(line + 1, math.huge)
- end,
- ["doc:newline-above"] = function()
- local line = doc():get_selection()
- local indent = doc().lines[line]:match("^[\t ]*")
- doc():insert(line, 1, indent .. "\n")
- doc():set_selection(line, math.huge)
- end,
- ["doc:delete"] = function()
- local line, col = doc():get_selection()
- if not doc():has_selection() and doc().lines[line]:find("^%s*$", col) then
- doc():remove(line, col, line, math.huge)
- end
- doc():delete_to(translate.next_char)
- end,
- ["doc:backspace"] = function()
- local line, col = doc():get_selection()
- if not doc():has_selection() then
- local text = doc():get_text(line, 1, line, col)
- if #text >= config.indent_size and text:find("^ *$") then
- doc():delete_to(0, -config.indent_size)
- return
- end
- end
- doc():delete_to(translate.previous_char)
- end,
- ["doc:select-all"] = function()
- doc():set_selection(1, 1, math.huge, math.huge)
- end,
- ["doc:select-lines"] = function()
- local line1, _, line2, _, swap = doc():get_selection(true)
- append_line_if_last_line(line2)
- doc():set_selection(line1, 1, line2 + 1, 1, swap)
- end,
- ["doc:select-word"] = function()
- local line1, col1 = doc():get_selection(true)
- local line1, col1 = translate.start_of_word(doc(), line1, col1)
- local line2, col2 = translate.end_of_word(doc(), line1, col1)
- doc():set_selection(line2, col2, line1, col1)
- end,
- ["doc:join-lines"] = function()
- local line1, _, line2 = doc():get_selection(true)
- if line1 == line2 then line2 = line2 + 1 end
- local text = doc():get_text(line1, 1, line2, math.huge)
- text = text:gsub("\n[\t ]*", " ")
- doc():insert(line1, 1, text)
- doc():remove(line1, #text + 1, line2, math.huge)
- if doc():has_selection() then
- doc():set_selection(line1, math.huge)
- end
- end,
- ["doc:indent"] = function()
- local text = get_indent_string()
- if doc():has_selection() then
- insert_at_start_of_selected_lines(text)
- else
- doc():text_input(text)
- end
- end,
- ["doc:unindent"] = function()
- local text = get_indent_string()
- remove_from_start_of_selected_lines(text)
- end,
- ["doc:duplicate-lines"] = function()
- local line1, col1, line2, col2, swap = doc():get_selection(true)
- append_line_if_last_line(line2)
- local text = doc():get_text(line1, 1, line2 + 1, 1)
- doc():insert(line2 + 1, 1, text)
- local n = line2 - line1 + 1
- doc():set_selection(line1 + n, col1, line2 + n, col2, swap)
- end,
- ["doc:delete-lines"] = function()
- local line1, col1, line2 = doc():get_selection(true)
- append_line_if_last_line(line2)
- doc():remove(line1, 1, line2 + 1, 1)
- doc():set_selection(line1, col1)
- end,
- ["doc:move-lines-up"] = function()
- local line1, col1, line2, col2, swap = doc():get_selection(true)
- append_line_if_last_line(line2)
- if line1 > 1 then
- local text = doc().lines[line1 - 1]
- doc():insert(line2 + 1, 1, text)
- doc():remove(line1 - 1, 1, line1, 1)
- doc():set_selection(line1 - 1, col1, line2 - 1, col2, swap)
- end
- end,
- ["doc:move-lines-down"] = function()
- local line1, col1, line2, col2, swap = doc():get_selection(true)
- append_line_if_last_line(line2 + 1)
- if line2 < #doc().lines then
- local text = doc().lines[line2 + 1]
- doc():remove(line2 + 1, 1, line2 + 2, 1)
- doc():insert(line1, 1, text)
- doc():set_selection(line1 + 1, col1, line2 + 1, col2, swap)
- end
- end,
- ["doc:toggle-line-comments"] = function()
- if not dv().syntax.comment then return end
- local text = dv().syntax.comment .. " "
- local line1, _, line2 = doc():get_selection(true)
- local uncomment = true
- for line = line1, line2 do
- local str = doc().lines[line]:match("^[ \t]*(.*)$")
- if str and str:sub(1, #text) ~= text then
- uncomment = false
- break
- end
- end
- if uncomment then
- remove_from_start_of_selected_lines(text)
- else
- insert_at_start_of_selected_lines(text)
- end
- end,
- ["doc:upper-case"] = function()
- doc():replace(string.upper)
- end,
- ["doc:lower-case"] = function()
- doc():replace(string.lower)
- end,
- ["doc:go-to-line"] = function()
- local dv = dv()
- local items
- local function init_items()
- if items then return end
- items = {}
- local mt = { __tostring = function(x) return x.text end }
- for i, line in ipairs(dv.doc.lines) do
- local item = { text = line:sub(1, -2), line = i, info = "line: " .. i }
- table.insert(items, setmetatable(item, mt))
- end
- end
- core.command_view:enter("Go To Line", function(text, item)
- local line = item and item.line or tonumber(text)
- if not line then
- core.error("Invalid line number or unmatched string")
- return
- end
- dv.doc:set_selection(line, 1 )
- dv:scroll_to_line(line, true)
- end, function(text)
- if not text:find("^%d*$") then
- init_items()
- return common.fuzzy_match(items, text)
- end
- end)
- end,
- ["doc:save-as"] = function()
- if doc().filename then
- core.command_view:set_text(doc().filename)
- end
- core.command_view:enter("Save As", function(filename)
- save(filename)
- end, common.path_suggest)
- end,
- ["doc:save"] = function()
- if doc().filename then
- save()
- else
- command.perform("doc:save-as")
- end
- end,
- ["doc:toggle-line-ending"] = function()
- doc().crlf = not doc().crlf
- end,
- }
- local translations = {
- ["previous-char"] = translate.previous_char,
- ["next-char"] = translate.next_char,
- ["previous-word-boundary"] = translate.previous_word_boundary,
- ["next-word-boundary"] = translate.next_word_boundary,
- ["previous-start-of-block"] = translate.previous_start_of_block,
- ["next-start-of-block"] = translate.next_start_of_block,
- ["start-of-doc"] = translate.start_of_doc,
- ["end-of-doc"] = translate.end_of_doc,
- ["start-of-line"] = translate.start_of_line,
- ["end-of-line"] = translate.end_of_line,
- ["start-of-word"] = translate.start_of_word,
- ["end-of-word"] = translate.end_of_word,
- ["previous-line"] = DocView.translate.previous_line,
- ["next-line"] = DocView.translate.next_line,
- ["previous-page"] = DocView.translate.previous_page,
- ["next-page"] = DocView.translate.next_page,
- }
- for name, fn in pairs(translations) do
- commands["doc:move-to-" .. name] = function() doc():move_to(fn, dv()) end
- commands["doc:select-to-" .. name] = function() doc():select_to(fn, dv()) end
- commands["doc:delete-to-" .. name] = function() doc():delete_to(fn, dv()) end
- end
- commands["doc:move-to-previous-char"] = function()
- if doc():has_selection() then
- local line, col = doc():get_selection(true)
- doc():set_selection(line, col)
- else
- doc():move_to(translate.previous_char)
- end
- end
- commands["doc:move-to-next-char"] = function()
- if doc():has_selection() then
- local _, _, line, col = doc():get_selection(true)
- doc():set_selection(line, col)
- else
- doc():move_to(translate.next_char)
- end
- end
- command.add("core.docview", commands)
|