Skip to content
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

Open
aareman opened this issue Jan 6, 2025 · 10 comments
Open

Add ability to refile to an orgfile as a top level heading. #27

aareman opened this issue Jan 6, 2025 · 10 comments

Comments

@aareman
Copy link

aareman commented Jan 6, 2025

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 get
image

Maybe I'm doing something wrong.

@aareman
Copy link
Author

aareman commented Jan 6, 2025

Directly running the file mode works

require('telescope').extensions.orgmode.refile_heading({ mode = "orgfiles" })

@seflue
Copy link
Collaborator

seflue commented Jan 6, 2025

Could you please post your configuration?

@aareman
Copy link
Author

aareman commented Jan 6, 2025

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,
		},
	},
}

@seflue
Copy link
Collaborator

seflue commented Jan 6, 2025

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.

@seflue
Copy link
Collaborator

seflue commented Jan 6, 2025

Another request from my side: Can you show me, how the picker looks like, when you start it?

Here is, how it looks for me:

image
image

If you have any additional telescope configuration, it could also be benefitial to post it.

@aareman
Copy link
Author

aareman commented Jan 8, 2025

running Telescope orgmode refile_heading
image

after pressing c-space
image

Telescope config

local telescope = require("telescope")
local builtin = require("telescope.builtin")
local actions = require("telescope.actions")
local action_state = require("telescope.actions.state")
local action_layout = require("telescope.actions.layout")

local pickers = require("telescope.pickers")
local finders = require("telescope.finders")
local sorters = require("telescope.sorters")
local is_inside_work_tree = {}
local custom_actions = {}
local telescopeConfig = require("telescope.config")

-- Clone the default Telescope configuration
local vimgrep_arguments = { unpack(telescopeConfig.values.vimgrep_arguments) }

-- I want to search in hidden/dot files.
table.insert(vimgrep_arguments, "--hidden")
-- I don't want to search in the `.git` directory.
table.insert(vimgrep_arguments, "--glob")
table.insert(vimgrep_arguments, "!**/.git/*")

local function change_theme(prompt_bufnr, map)
	actions.select_default:replace(function()
		actions.close(prompt_bufnr)
		local selection = action_state.get_selected_entry()
		vim.cmd([[colorscheme ]] .. selection[1])
		require("lualine").setup({ options = { theme = selection[1] } })
	end)
	return true
end

return {
	"nvim-telescope/telescope.nvim",
	branch = "0.1.x",
	-- commit = "ffe35cb433192fcb5080b557c1aef14d37092035",
	cmd = "Telescope",
	event = "VeryLazy",
	dependencies = {
		"nvim-lua/popup.nvim",
		"nvim-lua/plenary.nvim",
		"nvim-telescope/telescope-ui-select.nvim",
		{
			"nvim-telescope/telescope-fzf-native.nvim",
			build = "cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build",
		},
	},
	config = function()
		require("telescope").setup({
			defaults = {
				winblend = 0,
				prompt_prefix = "",
				selection_caret = "",
				selection_strategy = "reset",
				entry_prefix = "  ",
				initial_mode = "insert",
				color_devicons = true,
				path_display = { "truncate" },
				mappings = {
					i = {
						-- close on escape
						["<esc>"] = actions.close,
					},
				},
				vimgrep_arguments = vimgrep_arguments,
			},
			pickers = {
				find_files = {
					find_command = { "rg", "--files", "--hidden", "--glob", "!**/.git/*" },
				},
			},
			extensions = {
				fzf = {
					fuzzy = true,
					override_generic_sorter = true,
					override_file_sorter = true,
					case_mode = "smart_case",
				},
			},
		})

		local M = {}

		require("telescope").load_extension("neoclip")
		require("telescope").load_extension("fzf")

		return M
	end,
	search_args = function(opts)
		local arg_command = vim.fn.execute([[args]])

		arg_command = arg_command:gsub("\n", " ")
		arg_command = arg_command:gsub("[%[%]]", "")
		arg_command = arg_command:gsub("%s+", " ")

		local results = vim.split(arg_command, " ")
		table.remove(results, 1)
		pickers
			.new(opts, {
				prompt_title = "Arg list",
				finder = finders.new_table(results),
				sorter = sorters.get_generic_fuzzy_sorter({}),
			})
			:find()
	end,

	search_todo = function(opts)
		require("telescope.builtin").grep_string({
			search = "TODO",
			prompt_title = "TODO",
		})
	end,
	search_all_todo = function(opts)
		require("telescope.builtin").grep_string({
			search = "TODO",
			prompt_title = "ALL TODO",
			cwd = "~/dev",
		})
	end,

	theme_picker = function(opts)
		require("telescope.builtin").colorscheme({
			prompt_title = "Theme",
			attach_mappings = change_theme,
		})
	end,

	search_dotfiles = function(opts)
		require("telescope.builtin").find_files({
			prompt_title = "DotFiles",
			cwd = "~/dots",
		})
	end,
	search_notes = function(opts)
		require("telescope.builtin").find_files({
			prompt_title = "Notes",
			cwd = "~/notes",
		})
	end,
	project_files = function()
		local opts = {} -- define here if you want to define something

		local cwd = vim.fn.getcwd()
		if is_inside_work_tree[cwd] == nil then
			vim.fn.system("git rev-parse --is-inside-work-tree")
			is_inside_work_tree[cwd] = vim.v.shell_error == 0
		end

		if is_inside_work_tree[cwd] then
			require("telescope.builtin").git_files(vim.tbl_deep_extend("force", opts, {
				show_untracked = true,
				-- recurse_submodules = true,
				-- Custom command to respect .gitignore but include .env
				find_command = {
					"bash",
					"-c",
					[[
        {
          git ls-files --cached --others --exclude-standard;
          git ls-files --others --exclude-standard | grep '\.env$'
        } | sort | uniq
      ]],
				},
			}))
		else
			builtin.find_files({
				hidden = true,
				-- Custom command for non-git projects
				-- find_command = {
				-- 	"rg",
				-- 	"--files",
				-- 	"--hidden",
				-- 	"--glob",
				-- 	"!.git/*",
				-- 	"--glob",
				-- 	".env",
				-- },
			})
		end
	end,
	search_snippets = function(opts)
		require("telescope.builtin").find_files({
			prompt_title = "Snippets",
			cwd = "~/dotfiles/i3/i3/scripts/snippets",
		})
	end,
	-- Custom function to search all files, including hidden and gitignored
	find_all_files = function(opts)
		builtin.find_files({
			find_command = { "rg", "--files", "--hidden", "--no-ignore" },
			prompt_title = "All Files",
		})
	end,

	-- Custom function for live grep including hidden and gitignored files
	grep_all_files = function()
		builtin.live_grep({
			additional_args = function(opts)
				return { "--hidden", "--no-ignore" }
			end,
			prompt_title = "Grep All Files",
		})
	end,
}

@aareman
Copy link
Author

aareman commented Jan 8, 2025

Step by step reproduce on my end:

  1. open neovim
  2. open an org file
  3. go to a heading and then :Telescope orgmode refile_heading<cr>
  4. press <c+space
  5. error message pops up

@aareman
Copy link
Author

aareman commented Feb 10, 2025

Same error appears for the insert headings too.

@seflue
Copy link
Collaborator

seflue commented Feb 10, 2025

@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.
The reason I asked you for a screenshot was to see, if your telescope is using borders and shows the initial title of the search field - which it actually does. The line of code, where the error occurs, is where the title of that search bar is changed from "Refile to headline" to "Refile to orgfile". Your setup indicates, that this layout property of the picker is not available, which is very strange. For me it seems more like a bug in telescope in combination with a very particular setup, than a bug in telescope-orgmode.nvim.

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?

@aareman
Copy link
Author

aareman commented Feb 10, 2025

Image

Image

Image

Thank you for looking into it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants