initial commit

This commit is contained in:
2025-10-14 12:29:46 +02:00
parent 0439bb0ff7
commit 903704e4d7
99 changed files with 8495 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,24 @@
local M = {}
M.find_directories = function()
local pickers = require("telescope.pickers")
local finders = require("telescope.finders")
local conf = require("telescope.config").values
pickers.new({}, {
prompt_title = "Finde Directories",
__locations_input = true,
finder = finders.new_oneshot_job({ "find", "-type", "d" }, {
entry_maker = function(entry)
return {
value = entry,
display = '' .. entry,
ordinal = entry,
}
end
}),
sorter = conf.file_sorter()
}):find()
end
return M

View File

@@ -0,0 +1,101 @@
local pickers = require("telescope.pickers")
local finders = require("telescope.finders")
local conf = require("telescope.config").values
local actions = require("telescope.actions")
local action_state = require("telescope.actions.state")
local M = {}
local function trim(s)
return (string.gsub(s, "^%s*(.-)%s*$", "%1"))
end
local function parse_emoji_line(line)
if not line or vim.startswith(line, "#") then
return nil
end
local id_element_split = vim.split(line, ";")
local element = id_element_split[2]
if not element then
return nil
end
local state_emoji_split = vim.split(element, "#")
local qualified = state_emoji_split[1]
local emoji = state_emoji_split[2]
if not qualified or trim(qualified) ~= "fully-qualified" then
return nil
end
if not emoji then
return nil
end
local icon_description_split = vim.split(emoji, " ")
local icon = icon_description_split[2]
local description = icon_description_split[4]
if not description then
return nil
end
return {
display = trim(icon) .. " " .. trim(description),
value = trim(icon)
}
end
function M.find_emojis()
local path = vim.fn.stdpath("config") .. "/lua/plugins/spec/telescope-picker/emojis.txt"
print(path)
local file = io.open(path, "r")
if not file then
print("Emoji File not found")
return nil
end
local t = {}
for line in file:lines() do
local parsed_line = parse_emoji_line(line)
if parsed_line then
table.insert(t, parsed_line)
end
end
file:close()
local finder = finders.new_table({
results = t,
entry_maker = function(entry)
return {
value = entry.value,
display = entry.display,
ordinal = entry.display,
}
end
})
pickers.new(conf, {
prompt_title = "Find Emojis",
finder = finder,
sorter = conf.generic_sorter(t),
attach_mappings = function(prompt_bufnr, _)
actions.select_default:replace(function()
actions.close(prompt_bufnr)
local selection = action_state.get_selected_entry()
local buf = vim.api.nvim_get_current_buf()
local cursor = vim.api.nvim_win_get_cursor(0)
vim.api.nvim_buf_set_text(buf, cursor[1] - 1, cursor[2], cursor[1] - 1, cursor[2], { selection.value })
vim.api.nvim_win_set_cursor(0, { cursor[1], cursor[2] + 1 })
end)
return true
end,
}):find()
end
return M

View File

@@ -0,0 +1,50 @@
local M = {}
M.multi_grep = function(opts)
local pickers = require("telescope.pickers")
local finders = require("telescope.finders")
local conf = require("telescope.config").values
local make_entry = require "telescope.make_entry"
opts = opts or {}
opts.cwd = opts.cwd or vim.fn.getcwd()
local finder = finders.new_async_job {
command_generator = function(prompt)
if not prompt or prompt == "" then
return nil
end
local segments = vim.split(prompt, " ")
local args = { "rg" }
if segments[1] then
table.insert(args, "-e")
table.insert(args, segments[1])
end
if segments[2] then
table.insert(args, "-g")
table.insert(args, segments[2])
end
return vim.tbl_flatten {
args,
{ "--color=never", "--no-heading", "--with-filename", "--line-number", "--column", "--smart-case" },
}
end,
entry_maker = make_entry.gen_from_vimgrep(opts),
cwd = opts.cwd,
}
pickers.new({}, {
debounce = 100,
prompt_title = "Multi Grep",
finder = finder,
previewer = conf.grep_previewer(opts),
sorter = require("telescope.sorters").empty(),
}):find()
end
M.multi_grep()
return M