Org Mode fixes for refile on windows breaking newlines
This commit is contained in:
@@ -11,3 +11,8 @@ vim.keymap.set(
|
||||
desc = 'ORG: meta return'
|
||||
}
|
||||
)
|
||||
|
||||
-- Force LF line endings for Org files (fixes capture/refile newline duplication on Windows)
|
||||
if vim.fn.has("win32") == 1 or vim.fn.has("win64") == 1 then
|
||||
vim.opt_local.fileformat = "unix"
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user