sensiblepuffin@lemmy.world to Programmer Humor@programming.dev · 2 months agoReally seems like they're missing one...files.mastodon.socialimagemessage-square4fedilinkarrow-up14arrow-down10file-text
arrow-up14arrow-down1imageReally seems like they're missing one...files.mastodon.socialsensiblepuffin@lemmy.world to Programmer Humor@programming.dev · 2 months agomessage-square4fedilinkfile-text
minus-squareMentalEdge@sopuli.xyzlinkfedilinkarrow-up0·2 months agoI don’t remember what program it was but I once went to configure something, and the command to “open settings” essentially just opened a text file in vim. Being a nano scrub that took me a second to get out of.
minus-squarePoolloverNathan@programming.devlinkfedilinkarrow-up1·2 months agoIt probably opened it in ${VISUAL:-${EDITOR:-vim}}; usually setting one of those variables in e.g. bashrc will avoid future vim.
I don’t remember what program it was but I once went to configure something, and the command to “open settings” essentially just opened a text file in vim.
Being a nano scrub that took me a second to get out of.
It probably opened it in
${VISUAL:-${EDITOR:-vim}}
; usually setting one of those variables in e.g. bashrc will avoid future vim.