-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathinit.lua
111 lines (91 loc) · 2.93 KB
/
init.lua
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
local api = vim.api
local refactors = require("refactoring.refactor")
local M = {}
local dont_need_args = {
"Inline Variable",
"Inline Function",
}
---@param config refactor.ConfigOpts
function M.setup(config)
require("refactoring.config").setup(config)
end
---@alias refactor.RefactorFunc fun(bufnr: integer, type: 'v' | 'V' | '' | nil, opts: refactor.Config)
local last_refactor ---@type refactor.RefactorFunc
local last_config ---@type refactor.Config
---@param type "line" | "char" | "block"
function M.refactor_operatorfunc(type)
local region_type = type == "line" and "V"
or type == "char" and "v"
or type == "block" and ""
or nil
last_refactor(api.nvim_get_current_buf(), region_type, last_config)
end
local default_motions = {
[refactors.inline_var] = "iw",
[refactors.inline_func] = "iw",
[refactors.extract_block] = "l",
}
---@param name string|number
---@param opts refactor.ConfigOpts|nil
function M.refactor(name, opts)
if opts == nil then
opts = {}
end
local refactor = refactors.refactor_names[name] or refactors[name] and name
if not refactor then
error(
('Could not find refactor %s. You can get a list of all refactors from require("refactoring").get_refactors()'):format(
refactor
)
)
end
local Config = require("refactoring.config")
last_config = Config.get():merge(opts)
last_refactor = refactors[refactor]
vim.o.operatorfunc = "v:lua.require'refactoring'.refactor_operatorfunc"
local mode = api.nvim_get_mode().mode
if mode ~= "n" then
return "g@"
end
local default_motion = default_motions[last_refactor]
if not default_motion then
return "g@"
end
return "g@" .. default_motion
end
---@return string[]
function M.get_refactors()
return vim.tbl_keys(
refactors.refactor_names --[[@as table<string, string>>]]
)
end
---@param opts refactor.ConfigOpts|{prefer_ex_cmd: boolean?}?
function M.select_refactor(opts)
local prefer_ex_cmd = opts and opts.prefer_ex_cmd or false
require("plenary.async").void(function()
local ui = require("refactoring.ui")
local selected_refactor = ui.select(
M.get_refactors(),
"Refactoring: select a refactor to apply:"
)
if not selected_refactor then
return
end
if
prefer_ex_cmd
and not vim.list_contains(dont_need_args, selected_refactor)
then
local refactor_name =
require("refactoring.refactor").refactor_names[selected_refactor]
api.nvim_input((":Refactor %s "):format(refactor_name))
else
local keys = M.refactor(selected_refactor, opts)
if keys == "g@" then
keys = "gvg@"
end
vim.cmd.normal(keys)
end
end)()
end
M.debug = require("refactoring.debug")
return M