canola.nvim/doc
Barrett Ruth 017007954d fix(ssh): preserve path separators in scp:// URI construction
Problem: \`url_to_scp\` passes the file path through \`util.url_escape\`,
which encodes \`/\` as \`%2F\`. The resulting scp command uses a URI like
\`scp://host/%2Ftmp%2Ffile\` where percent-encoded slashes are not
treated as path separators, causing scp to fail with a connection
error.

Solution: unescape \`%2F\` back to \`/\` after encoding, so other special
characters (spaces, \`%\`, etc.) remain encoded but path separators are
preserved. The correct absolute-path URI form is \`scp://host//path\`.
2026-03-18 15:39:25 -04:00
..
oil.txt feat(config): add default_to_float option (#173) 2026-03-18 14:12:55 -04:00
upstream.md fix(ssh): preserve path separators in scp:// URI construction 2026-03-18 15:39:25 -04:00