LinearArray to Programmer [email protected]English • 1 year agoMy wife was unimpressed by Vimprogramming.devimagemessage-square180fedilinkarrow-up1960
arrow-up1960imageMy wife was unimpressed by Vimprogramming.devLinearArray to Programmer [email protected]English • 1 year agomessage-square180fedilink
minus-squaretiredofsametablinkfedilink2•1 year agoYou can set your default editor (maybe in .bashrc or .bash_profile? I forget), but I’m far too lazy.
minus-squarePureTryOutlinkfedilink27•1 year agoexport EDITOR=nano. But (neo)vim is amazing so there is no need to do that.
minus-square@[email protected]linkfedilink18•1 year agoI transfer all my files over to a Windows machine and edit them in Notepad
minus-square@[email protected]linkfedilink4•edit-21 year 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]linkfedilink3•edit-21 year agoThat would be too smart. Smells like kotlin’s when
minus-square@[email protected]linkfedilink2•1 year agoPut backticks around the entire case statement, and you can.
alias vi=nano
You can set your default editor (maybe in .bashrc or .bash_profile? I forget), but I’m far too lazy.
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)
deleted by creator
That would be too smart. Smells like kotlin’s when
Put backticks around the entire case statement, and you can.