927
submitted 3 months ago by [email protected] to c/[email protected]
you are viewing a single comment's thread
view the rest of the comments
[-] [email protected] 29 points 3 months ago
[-] [email protected] 27 points 3 months ago

export EDITOR=nano.

But (neo)vim is amazing so there is no need to do that.

[-] [email protected] 17 points 3 months ago

I transfer all my files over to a Windows machine and edit them in Notepad

[-] [email protected] 4 points 3 months ago* (last edited 3 months ago)

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
  ;;
[-] [email protected] 2 points 3 months ago

I guess shell languages can't do this:

export EDITOR=case "$OSTYPE" in
  linux*)
    nano
  ;;
  freebsd*)
    ee
  ;;
[-] [email protected] 2 points 3 months ago

Put backticks around the entire case statement, and you can.

[-] [email protected] 2 points 3 months ago* (last edited 3 months ago)

That would be too smart. Smells like kotlin's when

[-] [email protected] 2 points 3 months ago

You can set your default editor (maybe in .bashrc or .bash_profile? I forget), but I'm far too lazy.

this post was submitted on 08 Apr 2024
927 points (98.1% liked)

Programmer Humor

18292 readers
1558 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS