You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
extract.file-path returns a path like this on Windows: D:\foo\bar.clj, then it's double-quoted in eval-file, "D:\foo\bar.clj", those backslashes become escape like \f, \b.
Ah no! Sorry, I'll get this fixed as soon as I can. Thanks you for reporting and sorry for the error, Windows paths always catch me out, we did a huge pass a year or so ago to escape everything and use the right slashes everywhere, I guess something slipped the net or was added later.
extract.file-path
returns a path like this on Windows:D:\foo\bar.clj
, then it's double-quoted ineval-file
,"D:\foo\bar.clj"
, those backslashes become escape like\f
,\b
.conjure/fnl/conjure/client/clojure/nrepl/action.fnl
Line 240 in 31a1626
opts.file-path
should be escaped on Windows platform:(nvim.fn.escape opts.file-path "\\")
or(opts.file-path:gsub "\\" "\\\\")
.The text was updated successfully, but these errors were encountered: