mirror of
https://github.com/mistricky/codesnap.nvim.git
synced 2025-01-14 12:57:29 -08:00
34 lines
1 KiB
Lua
34 lines
1 KiB
Lua
local visual_utils = require("codesnap.utils.visual")
|
|
local path_utils = require("codesnap.utils.path")
|
|
local string_utils = require("codesnap.utils.string")
|
|
local static = require("codesnap.static")
|
|
local table_utils = require("codesnap.utils.table")
|
|
local config_module = {}
|
|
|
|
function config_module.get_config()
|
|
local code = visual_utils.get_selected_text()
|
|
local start_line_number = visual_utils.get_start_line_number()
|
|
|
|
if string_utils.is_str_empty(code) then
|
|
error("No code is selected", 0)
|
|
return
|
|
end
|
|
|
|
local config = table_utils.assign(static.config, {
|
|
code = {
|
|
content = code,
|
|
file_path = vim.fn.expand("%:p"),
|
|
line_number = {
|
|
start_number = start_line_number,
|
|
color = "#495162",
|
|
},
|
|
},
|
|
-- file_path = static.config.has_breadcrumbs and get_file_path(static.config.show_workspace) or "",
|
|
-- start_line_number = static.config.has_line_number and start_line_number or nil,
|
|
})
|
|
|
|
-- config.save_path = parse_save_path(config.save_path)
|
|
return config
|
|
end
|
|
|
|
return config_module
|