-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ability to refile to an orgfile as a top level heading. #27
Comments
Directly running the file mode works
|
Could you please post your configuration? |
local function template_from_file(filepath)
-- Expand the tilde to home directory
local home = os.getenv("HOME") or os.getenv("USERPROFILE")
local expanded_path = string.gsub(filepath, "^~", home)
-- Open the file
local file, err = io.open(expanded_path, "r")
if not file then
return nil, "Failed to open file: " .. (err or "unknown error")
end
-- Read the entire file content
local content = file:read("*a")
-- Close the file
file:close()
return content
end
return {
"nvim-orgmode/orgmode.nvim",
config = function()
require("orgmode").setup({
org_agenda_files = "~/notes/**/*",
org_default_notes_file = "~/notes/inbox.org",
org_todo_keywords = {
"TODO(t)",
"WAITING",
"In-Progress(p)",
"NEXT",
"|",
"DONE",
"DELEGATED(e)",
"CANCELED",
},
org_blank_before_new_entry = {
heading = false,
plain_list_item = false,
},
org_startup_indented = true,
org_adapt_indentation = false,
org_hide_emphasis_markers = true,
org_agenda_text_search_extra_files = { "agenda-archives" },
org_agenda_skip_scheduled_if_done = false,
org_agenda_skip_deadline_if_done = false,
org_agenda_span = "day",
org_archive_location = "archive/%s_archive::",
org_log_done = false,
org_log_repeat = "note",
org_log_into_drawer = "LOGBOOK",
org_todo_keyword_faces = {
WAITING = ":foreground yellow :background black :weight bold",
},
mappings = {
org_return = false,
},
-- float, edit, split
win_split_mode = "split",
org_capture_templates = {
t = { description = "Task", template = "* TODO %?\n %u", target = "~/notes/inbox.org" },
T = { description = "Scheduled Task", template = "* %?\n SCHEDULED: %t", target = "~/notes/inbox.org" },
i = { description = "Someday", template = "* %?\n %u", target = "~/notes/inbox.org" },
f = { description = "File Note", template = "* TODO %?\n %a\n %u" },
c = {
description = "Code Review",
template = "* TODO %?\n %u",
target = "~/notes/work/work.org",
headline = "CODE REVIEW",
},
},
emacs_config = {
config_path = "$HOME/.config/emacs/early-init.el",
},
})
require("org-bullets").setup({
symbols = {
headlines = { "◉", "", "✸", "✿" },
checkboxes = {
cancelled = { "", "OrgCancelled" },
done = { "✓", "OrgDone" },
todo = { " ", "OrgTODO" },
},
},
})
--[[ require("telescope").load_extension("orgmode") ]]
--[[ vim.api.nvim_create_autocmd("FileType", { ]]
--[[ pattern = "org", ]]
--[[ group = vim.api.nvim_create_augroup("orgmode_telescope_nvim", { clear = true }), ]]
--[[ callback = function() ]]
--[[ vim.keymap.set("n", "<leader>or", require("telescope").extensions.orgmode.refile_heading) ]]
--[[ end, ]]
--[[ }) ]]
end,
dependencies = {
"akinsho/org-bullets.nvim",
{
"chipsenkbeil/org-roam.nvim",
config = function()
require("org-roam").setup({
directory = "~/notes/roam/",
-- optional
-- org_files = {
-- "~/another_org_dir",
-- "~/some/folder/*.org",
-- "~/a/single/org_file.org",
-- },
extensions = {
dailies = {
directory = "~/notes/journal",
templates = {
d = {
description = "default",
template = "%?",
target = "%<%Y-%m>/%<%Y-%m-%d>.org",
},
j = {
description = "Daily Journal (2025)",
template = template_from_file("~/notes/.src/template/daily.org"),
target = "%<%Y-%m>/%<%Y-%m-%d>.org",
},
},
},
},
})
end,
},
{
"mrshmllow/orgmode-babel.nvim",
dependencies = {
"nvim-orgmode/orgmode",
"nvim-treesitter/nvim-treesitter",
},
cmd = { "OrgExecute", "OrgTangle" },
opts = {
-- by default, none are enabled
langs = { "python", "lua", "js", "shell", "ruby", "bash" },
-- paths to emacs packages to additionally load
load_paths = {},
},
},
{
"nvim-orgmode/telescope-orgmode.nvim",
event = "VeryLazy",
dependencies = {
"nvim-orgmode/orgmode",
"nvim-telescope/telescope.nvim",
},
config = function()
require("telescope").load_extension("orgmode")
vim.api.nvim_create_autocmd("FileType", {
pattern = "org",
group = vim.api.nvim_create_augroup("orgmode_telescope_nvim", { clear = true }),
callback = function()
vim.keymap.set("n", "<leader>or", require("telescope").extensions.orgmode.refile_heading)
end,
})
-- vim.keymap.set("n", "<leader>r", require("telescope").extensions.orgmode.refile_heading)
-- vim.keymap.set("n", "<leader>fh", require("telescope").extensions.orgmode.search_headings)
-- vim.keymap.set("n", "<leader>li", require("telescope").extensions.orgmode.insert_link)
end,
},
},
} |
Can you give me a bit more context? You press Ctrl+Space and get the exception ... did you search for files or headlines, before pressing Ctrl+Space? To make it easier for both of us, describe step by step, what exactly you're doing and when the exception happen. And if you don't mind, can you post the exception again as text? Makes it easier to work with. |
Step by step reproduce on my end:
|
Same error appears for the insert headings too. |
@aareman Something seems to be broken with your setup. I actually copied both of your configuration for Telescope and Orgmode into my setup, replacing my own one, created your notes file with a bunch of example notes and tried to reproduce it - I don't get any error. Questions, which are still open: Which version of Neovim do you use? And can you check, which actual version of telescope is checked out on your machine via Lazy? |
Right now can only refile as a sub heading of a target heading. I think it would be beneficial to be able to refile to a file and append it at end of file. (as a top level heading). According to the readme it should be able to toggle between files and headings with

<c-space>
, but When I press that in the refile picker I getMaybe I'm doing something wrong.
The text was updated successfully, but these errors were encountered: