sensiblepuffin@lemmy.world to Programmer Humor@programming.dev · 19 days agoReally seems like they're missing one...files.mastodon.socialimagemessage-square6fedilinkarrow-up122arrow-down10file-text
arrow-up122arrow-down1imageReally seems like they're missing one...files.mastodon.socialsensiblepuffin@lemmy.world to Programmer Humor@programming.dev · 19 days agomessage-square6fedilinkfile-text
minus-squareMentalEdge@sopuli.xyzlinkfedilinkarrow-up0·19 days 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·19 days 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.
Move from nano to micro!
It probably opened it in
${VISUAL:-${EDITOR:-vim}}
; usually setting one of those variables in e.g. bashrc will avoid future vim.