sensiblepuffin@lemmy.world to Programmer Humor@programming.dev · 7 months agoReally seems like they're missing one...files.mastodon.socialimagemessage-square4linkfedilinkarrow-up15arrow-down10file-text
arrow-up15arrow-down1imageReally seems like they're missing one...files.mastodon.socialsensiblepuffin@lemmy.world to Programmer Humor@programming.dev · 7 months agomessage-square4linkfedilinkfile-text
minus-squareMentalEdge@sopuli.xyzlinkfedilinkarrow-up0·7 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·7 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.