Add base plugin
This commit is contained in:
commit
82dd670c0e
7
.stylua.toml
Normal file
7
.stylua.toml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
column_width = 100
|
||||||
|
line_endings = "Unix"
|
||||||
|
indent_type = "Spaces"
|
||||||
|
indent_width = 2
|
||||||
|
quote_style = "AutoPreferDouble"
|
||||||
|
call_parentheses = "None"
|
||||||
|
collapse_simple_statement = "Always"
|
43
lua/ranger/actions.lua
Normal file
43
lua/ranger/actions.lua
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
local prev_win = -1
|
||||||
|
|
||||||
|
local function on_exit(job_id, code, event)
|
||||||
|
if code ~= 0 then return end
|
||||||
|
|
||||||
|
vim.cmd "silent! :q"
|
||||||
|
RANGER_BUFFER = nil
|
||||||
|
RANGER_LOADED = false
|
||||||
|
vim.g.ranger_opened = 0
|
||||||
|
vim.cmd "silent! :checktime"
|
||||||
|
|
||||||
|
if vim.fn.filereadable "/tmp/ranger-choose" then
|
||||||
|
for _, f in pairs(vim.fn.readfile "/tmp/ranger-choose") do
|
||||||
|
vim.cmd(string.format("silent! :edit %s", f))
|
||||||
|
return
|
||||||
|
end
|
||||||
|
vim.cmd [[call delete("/tmp/ranger-choose")]]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local function exec_ranger_command(cmd)
|
||||||
|
if RANGER_LOADED == false then
|
||||||
|
vim.g.ranger_opened = 1
|
||||||
|
vim.fn.termopen(cmd, { on_exit = on_exit })
|
||||||
|
end
|
||||||
|
vim.cmd "silent! :startinsert"
|
||||||
|
end
|
||||||
|
|
||||||
|
local M = {}
|
||||||
|
|
||||||
|
function M.ranger()
|
||||||
|
prev_win = vim.api.nvim_get_current_win
|
||||||
|
|
||||||
|
require("ranger.floating").open_floating_window()
|
||||||
|
|
||||||
|
local cmd = "ranger"
|
||||||
|
|
||||||
|
cmd = string.format("%s --choosefiles=%s %s", cmd, "/tmp/ranger-choose", vim.fn.expand "%")
|
||||||
|
|
||||||
|
exec_ranger_command(cmd)
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
7
lua/ranger/commands.lua
Normal file
7
lua/ranger/commands.lua
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
local M = {}
|
||||||
|
|
||||||
|
function M.setup()
|
||||||
|
vim.api.nvim_create_user_command("Ranger", function() require("ranger.actions").ranger() end, {})
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
89
lua/ranger/floating.lua
Normal file
89
lua/ranger/floating.lua
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
local api = vim.api
|
||||||
|
|
||||||
|
--- open floating window with nice borders
|
||||||
|
local function open_floating_window()
|
||||||
|
local floating_window_scaling_factor = vim.g.ranger_floating_window_scaling_factor
|
||||||
|
|
||||||
|
-- Why is this required?
|
||||||
|
-- vim.g.ranger_floating_window_scaling_factor returns different types if the value is an integer or float
|
||||||
|
if type(floating_window_scaling_factor) == "table" then
|
||||||
|
floating_window_scaling_factor = floating_window_scaling_factor[false]
|
||||||
|
end
|
||||||
|
|
||||||
|
local status, plenary = pcall(require, "plenary.window.float")
|
||||||
|
if
|
||||||
|
status
|
||||||
|
and vim.g.ranger_floating_window_use_plenary
|
||||||
|
and vim.g.ranger_floating_window_use_plenary ~= 0
|
||||||
|
then
|
||||||
|
plenary.percentage_range_window(floating_window_scaling_factor, floating_window_scaling_factor)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local height = math.ceil(vim.o.lines * floating_window_scaling_factor) - 1
|
||||||
|
local width = math.ceil(vim.o.columns * floating_window_scaling_factor)
|
||||||
|
|
||||||
|
local row = math.ceil(vim.o.lines - height) / 2
|
||||||
|
local col = math.ceil(vim.o.columns - width) / 2
|
||||||
|
|
||||||
|
local border_opts = {
|
||||||
|
style = "minimal",
|
||||||
|
relative = "editor",
|
||||||
|
row = row - 1,
|
||||||
|
col = col - 1,
|
||||||
|
width = width + 2,
|
||||||
|
height = height + 2,
|
||||||
|
}
|
||||||
|
|
||||||
|
local opts =
|
||||||
|
{ style = "minimal", relative = "editor", row = row, col = col, width = width, height = height }
|
||||||
|
|
||||||
|
local topleft, topright, botleft, botright
|
||||||
|
local corner_chars = vim.g.ranger_floating_window_corner_chars
|
||||||
|
if type(corner_chars) == "table" and #corner_chars == 4 then
|
||||||
|
topleft, topright, botleft, botright = unpack(corner_chars)
|
||||||
|
else
|
||||||
|
topleft, topright, botleft, botright = "╭", "╮", "╰", "╯"
|
||||||
|
end
|
||||||
|
|
||||||
|
local border_lines = { topleft .. string.rep("─", width) .. topright }
|
||||||
|
local middle_line = "│" .. string.rep(" ", width) .. "│"
|
||||||
|
for i = 1, height do
|
||||||
|
table.insert(border_lines, middle_line)
|
||||||
|
end
|
||||||
|
table.insert(border_lines, botleft .. string.rep("─", width) .. botright)
|
||||||
|
|
||||||
|
-- create a unlisted scratch buffer for the border
|
||||||
|
local border_buffer = api.nvim_create_buf(false, true)
|
||||||
|
|
||||||
|
-- set border_lines in the border buffer from start 0 to end -1 and strict_indexing false
|
||||||
|
api.nvim_buf_set_lines(border_buffer, 0, -1, true, border_lines)
|
||||||
|
-- create border window
|
||||||
|
local border_window = api.nvim_open_win(border_buffer, true, border_opts)
|
||||||
|
vim.cmd "set winhl=Normal:Floating"
|
||||||
|
|
||||||
|
-- create a unlisted scratch buffer
|
||||||
|
if RANGER_BUFFER == nil or vim.fn.bufwinnr(RANGER_BUFFER) == -1 then
|
||||||
|
RANGER_BUFFER = api.nvim_create_buf(false, true)
|
||||||
|
else
|
||||||
|
RANGER_LOADED = true
|
||||||
|
end
|
||||||
|
-- create file window, enter the window, and use the options defined in opts
|
||||||
|
local _ = api.nvim_open_win(RANGER_BUFFER, true, opts)
|
||||||
|
|
||||||
|
vim.bo[RANGER_BUFFER].filetype = "ranger"
|
||||||
|
|
||||||
|
vim.cmd "setlocal bufhidden=hide"
|
||||||
|
vim.cmd "setlocal nocursorcolumn"
|
||||||
|
vim.cmd("set winblend=" .. vim.g.ranger_floating_window_winblend)
|
||||||
|
|
||||||
|
-- use autocommand to ensure that the border_buffer closes at the same time as the main buffer
|
||||||
|
local cmd = [[autocmd WinLeave <buffer> silent! execute 'hide']]
|
||||||
|
vim.cmd(cmd)
|
||||||
|
cmd = [[autocmd WinLeave <buffer> silent! execute 'silent bdelete! %s']]
|
||||||
|
vim.cmd(cmd:format(border_buffer))
|
||||||
|
end
|
||||||
|
|
||||||
|
return {
|
||||||
|
open_floating_window = open_floating_window,
|
||||||
|
}
|
11
lua/ranger/init.lua
Normal file
11
lua/ranger/init.lua
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
RANGER_BUFFER = nil
|
||||||
|
RANGER_LOADED = false
|
||||||
|
vim.g.ranger_opened = 0
|
||||||
|
vim.g.ranger_floating_window_winblend = 0
|
||||||
|
vim.g.ranger_floating_window_scaling_factor = 0.9
|
||||||
|
|
||||||
|
local M = {}
|
||||||
|
|
||||||
|
function M.setup(options) require("ranger.commands").setup() end
|
||||||
|
|
||||||
|
return M
|
Loading…
Reference in New Issue
Block a user