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
|
local M = {}
local templates_dir = vim.g.notes_templates_dir or "~/notes/templates/"
function M.select_template()
templates_dir = vim.fn.expand(templates_dir)
local templates = vim.fn.readdir(templates_dir, function(name)
return name:match "%.md$"
end)
if vim.tbl_isempty(templates) then
M.create_note_from_template(nil)
else
local template_files = {}
for _, template in ipairs(templates) do
table.insert(template_files, templates_dir .. template)
end
require("telescope.pickers")
.new({}, {
prompt_title = "Select Template",
finder = require("telescope.finders").new_table {
results = template_files,
entry_maker = function(entry)
return {
value = entry,
display = vim.fn.fnamemodify(entry, ":t"),
ordinal = entry,
}
end,
},
sorter = require("telescope.config").values.generic_sorter {},
attach_mappings = function(prompt_bufnr, map)
local actions = require "telescope.actions"
local action_state = require "telescope.actions.state"
actions.select_default:replace(function()
actions.close(prompt_bufnr)
local selection = action_state.get_selected_entry()
M.create_note_from_template(selection.value)
end)
return true
end,
})
:find()
end
end
function M.create_note_from_template(template_path)
local notes_dir = vim.g.notes_directory or "~/notes/"
local filename = os.date "%Y-%m-%d_%H-%M-%S" .. ".md"
local filepath = vim.fn.expand(notes_dir) .. filename
vim.cmd("edit " .. filepath)
if template_path then
vim.cmd("0r " .. template_path)
else
local title = "Title " .. os.date "%Y-%m-%d %H:%M:%S"
local template = {
"# " .. title,
"",
}
local file = io.open(filepath, "w")
for _, line in ipairs(template) do
file:write(line .. "\n")
end
file:close()
end
end
return M
|