cm0002@piefed.world to Programmer Humor@programming.devEnglish · 1 month agoExit Signimagemessage-square28linkfedilinkarrow-up130arrow-down12
arrow-up128arrow-down1imageExit Signcm0002@piefed.world to Programmer Humor@programming.devEnglish · 1 month agomessage-square28linkfedilink
minus-squarethagoat@lemmy.sdf.orglinkfedilinkarrow-up0arrow-down1·1 month ago5 key presses to save and exit. Frickin vim.
minus-squareNeatNit@discuss.tchncs.delinkfedilinkarrow-up1·1 month agoDepends how you count. Both : and ! require shift as well.
minus-squareTragicNotCute@lemmy.worldlinkfedilinkEnglisharrow-up1·1 month agoI’m pretty sure that’s close without saving changes. :wq would be needed to save.
minus-squareAatube@kbin.melroy.orglinkfedilinkarrow-up0·1 month agoTo be precise, : means bring up commands, w means save, q means exit, and ! means force
minus-squareHeuristicAlgorithm9@feddit.uklinkfedilinkarrow-up0·1 month agoI think it’s w = write and q = quit so the letters make more sense
minus-squaredarklamer@lemmy.dbzer0.comlinkfedilinkarrow-up1·1 month agoNo, it isn’t, x writes only when changes have been made, while w writes unconditionally.
5 key presses to save and exit. Frickin vim.
Depends how you count. Both
:and!require shift as well.I’m pretty sure that’s close without saving changes. :wq would be needed to save.
To be precise, : means bring up commands, w means save, q means exit, and ! means force
I think it’s w = write and q = quit so the letters make more sense
Also :x is the same as :wq
No, it isn’t, x writes only when changes have been made, while w writes unconditionally.
TIL. Ty!