LinearArray to Programmer [email protected]English • 8 months agoMy wife was unimpressed by Vimprogramming.devimagemessage-square179fedilinkarrow-up1945arrow-down119
arrow-up1926arrow-down1imageMy wife was unimpressed by Vimprogramming.devLinearArray to Programmer [email protected]English • 8 months agomessage-square179fedilink
minus-squarePureTryOutlinkfedilink26•8 months agoexport EDITOR=nano. But (neo)vim is amazing so there is no need to do that.
minus-square@SpaceNoodlelink17•8 months agoI transfer all my files over to a Windows machine and edit them in Notepad
minus-square@[email protected]linkfedilink4•edit-28 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-square@[email protected]linkfedilink2•8 months agoI guess shell languages can’t do this: export EDITOR=case "$OSTYPE" in linux*) nano ;; freebsd*) ee ;;
minus-square@[email protected]linkfedilink2•edit-28 months agoThat would be too smart. Smells like kotlin’s when
minus-square@SpaceNoodlelink2•8 months agoPut backticks around the entire case statement, and you can.
minus-squaretiredofsametablinkfedilink2•8 months agoYou can set your default editor (maybe in .bashrc or .bash_profile? I forget), but I’m far too lazy.
alias vi=nano
export EDITOR=nano
.But (neo)vim is amazing so there is no need to do that.
I transfer all my files over to a Windows machine and edit them in Notepad
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.
You can set your default editor (maybe in .bashrc or .bash_profile? I forget), but I’m far too lazy.