We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If you select backwards the text and use org_insert_link the text is now well inserted
org_insert_link
link is well inserted
No response
local tmp_dir = vim.env.TMPDIR or vim.env.TMP or vim.env.TEMP or "/tmp" local nvim_root = tmp_dir .. "/nvim_orgmode" local lazy_root = nvim_root .. "/lazy" local lazypath = lazy_root .. "/lazy.nvim" for _, name in ipairs({ "config", "data", "state", "cache" }) do vim.env[("XDG_%s_HOME"):format(name:upper())] = nvim_root .. "/" .. name end -- Install lazy.nvim if not already installed if not vim.loop.fs_stat(lazypath) then vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", -- latest stable release lazypath, }) end vim.opt.rtp:prepend(lazypath) require("lazy").setup({ { "nvim-orgmode/orgmode", event = "VeryLazy", ft = { "org" }, config = function() require("orgmode").setup({ org_agenda_files = { "*.org", }, }) end, }, }, { root = lazy_root, lockfile = nvim_root .. "/lazy.json", install = { missing = false, }, }) require("lazy").sync({ wait = true, show = false, })
Linux
0.10.4
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
If you select backwards the text and use
org_insert_link
the text is now well insertedSteps to reproduce
Expected behavior
link is well inserted
Emacs functionality
No response
Minimal init.lua
Screenshots and recordings
No response
OS / Distro
Linux
Neovim version/commit
0.10.4
Additional context
No response
The text was updated successfully, but these errors were encountered: