Skip to content

Commit

Permalink
Merge pull request #64 from zhufengning/master
Browse files Browse the repository at this point in the history
fix the 'Unknown operator \xx' on windows
  • Loading branch information
cannorin authored Nov 24, 2022
2 parents a0685e9 + 741473a commit a668451
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lua/ionide/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ local function create_manager(config)
if not root_dir then
root_dir = vim.fn.getcwd()
end
root_dir = string.gsub(root_dir, "\\", "/")
api.nvim_command(
string.format(
"autocmd %s lua require'ionide'.manager.try_add_wrapper()",
Expand Down

0 comments on commit a668451

Please sign in to comment.