-
-
Notifications
You must be signed in to change notification settings - Fork 220
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
error executing vim.schedule on Neorg export #1277
Comments
This is not a fix but you've got other methods to export, just until nvim v0.10 gets to stable. https://github.com/pysan3/Norg-Tutorial/blob/main/norg_tutorial.md#export--import |
can you post the file you are trying to export? I can see where the export is failing, but i need a test case to figure out why it can reach that point and test fixes (manually copying it from the image doesn't seem to trigger the issue, so i guess there is concealed formatting) Edit: nevermore, figured out the issue |
Awesome, after removing metadata or parameter, I have successfully exported it. Thank for your info. I'll close this issue. |
Prerequisites
Neovim Version
nvim v0.9.5
Neorg setup
require("neorg").setup {
load = {
["core.defaults"] = {
config = {
disable = {
"core.autocommands",
"core.itero",
},
},
}, -- Loads default behaviour
["core.concealer"] = {
config = {
icons = {},
},
},
["core.qol.todo_items"] = {
config = {},
},
["core.dirman"] = { -- Manages Neorg workspaces
config = {
workspaces = {
main = "~/notes/main",
},
default_workspace = "main",
},
},
["core.highlights"] = {
config = {
highlights = {
anchors = {
declaration = "+Underlined",
},
headings = {},
links = {},
todo_items = {},
},
},
},
["core.integrations.telescope"] = {},
["core.integrations.treesitter"] = {},
["core.integrations.nvim-cmp"] = {},
["core.completion"] = {
config = {
engine = "nvim-cmp",
},
},
["core.summary"] = {},
["core.export"] = {},
["core.esupports.metagen"] = {
config = {
tab = " ",
template = {more ...},
},
},
["core.keybinds"] = {
config = {
hook = function(keybinds)
keybinds.remap_event("norg", "n", "", "core.integrations.treesitter.next.heading")
more..
end,
},
},
},
}
Actual behavior
Hello, I hope I find you well everybody. I want to export my neorg to markdown, but the error shows.
Expected behavior
Export my norg notes.
Steps to reproduce
Neorg export to-file ~/out.md
(result first image)1.1 run command
Neorg export to-file out.md
(result second image)I guess that it would be solve if I use Neovim nightly version like module.calendar. However, I also find trouble on install Neovim nightly through scoop in Windows. Any solution? thank you.
Potentially conflicting plugins
No response
Other information
No response
Help
No
Implementation help
No response
The text was updated successfully, but these errors were encountered: