1
0
Fork 0

Nvim configuration.

This commit is contained in:
Arthur Khachaturov 2023-12-01 19:05:24 +03:00
parent 8577646177
commit bb8a0eaec7
10 changed files with 61 additions and 37 deletions

View file

@ -1,23 +1,31 @@
local M = { }
function M.close_buffer()
local try_quit = function(command)
local success, errorMsg = pcall(vim.api.nvim_command, command)
if not success then
print("Failed to quit: " .. errorMsg)
end
end
local function try_quit(command)
local success, errorMsg = pcall(vim.api.nvim_command, command)
if not success then
print("Failed to quit: " .. errorMsg)
end
end
local tree = require("nvim-tree.api").tree
local buffer_count = #vim.fn.filter(vim.fn.range(1, vim.fn.bufnr '$'), 'buflisted(v:val)')
function M.close_buffer(force)
local buf_cmd = "bd"
local quit_cmd = "qa"
if buffer_count ~= 1 then
tree.toggle({ focus = false })
try_quit("bd")
tree.toggle({ focus = false })
else
try_quit("qa")
end
if force then
buf_cmd = "bd!"
quit_cmd = "qa!"
end
local tree = require("nvim-tree.api").tree
local buffer_count = #vim.fn.filter(vim.fn.range(1, vim.fn.bufnr '$'), 'buflisted(v:val)')
if buffer_count == 1 or buffer_count == 0 then
try_quit(quit_cmd)
else
tree.toggle({ focus = false })
try_quit(buf_cmd)
tree.toggle({ focus = false })
end
end
return M