Auto tangle
#1240
-
I was wandering, is it possible to auto tangle when ever the file is saved? |
Beta Was this translation helpful? Give feedback.
Answered by
max397574
Dec 22, 2023
Replies: 1 comment 1 reply
-
no it isn't |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
refaelsh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
no it isn't
I'd just write an autocmd
vim.api.nvim_create_autocmd("BufWritePre",{callback=function()vim.cmd("Neorg tangle current-file") end})