LinearArray@programming.dev to Programmer Humor@programming.devEnglish · 7 months agoMy wife was unimpressed by Vimprogramming.devimagemessage-square187fedilinkarrow-up1960arrow-down119
arrow-up1941arrow-down1imageMy wife was unimpressed by Vimprogramming.devLinearArray@programming.dev to Programmer Humor@programming.devEnglish · 7 months agomessage-square187fedilink
minus-squareryannathans@aussie.zonelinkfedilinkarrow-up4·edit-27 months agoBased nano user From my .zshrc (typing this on mobile so cope if it’s wrong) case "$OSTYPE" in linux*) export EDITOR=nano ;; freebsd*) export EDITOR=ee ;;
minus-squarelil@lemy.lollinkfedilinkarrow-up2·7 months agoI guess shell languages can’t do this: export EDITOR=case "$OSTYPE" in linux*) nano ;; freebsd*) ee ;;
minus-squareryannathans@aussie.zonelinkfedilinkarrow-up3arrow-down1·edit-27 months agoThat would be too smart. Smells like kotlin’s when
minus-squareSpaceNoodle@lemmy.worldlinkfedilinkarrow-up2·7 months agoPut backticks around the entire case statement, and you can.
Based nano user
From my .zshrc (typing this on mobile so cope if it’s wrong)
case "$OSTYPE" in linux*) export EDITOR=nano ;; freebsd*) export EDITOR=ee ;;
I guess shell languages can’t do this:
export EDITOR=case "$OSTYPE" in linux*) nano ;; freebsd*) ee ;;
That would be too smart. Smells like kotlin’s when
Put backticks around the entire case statement, and you can.