cm0002@piefed.world to Programmer Humor@programming.devEnglish · 2 days agoI_fucking_hate_them_nowmedia.piefed.worldimagemessage-square124fedilinkarrow-up1937arrow-down19
arrow-up1928arrow-down1imageI_fucking_hate_them_nowmedia.piefed.worldcm0002@piefed.world to Programmer Humor@programming.devEnglish · 2 days agomessage-square124fedilink
minus-squarecally [he/they]@pawb.sociallinkfedilinkEnglisharrow-up17·24 hours agonot sure why the default behavior is this: file\ name\ with\ a\ bunch\ of\ spaces instead of this: "file name with a bunch of spaces" but you can just press " before pressing tab to auto-complete, and it will use the 2nd form
minus-squarekilleronthecorner@lemmy.worldlinkfedilinkEnglisharrow-up1·10 hours agoBecause quoting requires token expansion (e.g. ~ to /home/you). Escaping gives you a much shorter path in that case. That said I’m with you, full quoted paths read better to me.
not sure why the default behavior is this:
file\ name\ with\ a\ bunch\ of\ spaces
instead of this:
"file name with a bunch of spaces"
but you can just press
"
before pressing tab to auto-complete, and it will use the 2nd formBecause quoting requires token expansion (e.g. ~ to /home/you). Escaping gives you a much shorter path in that case.
That said I’m with you, full quoted paths read better to me.