Blame SOURCES/nano-default-editor.fish

49a47e
# Ensure GNU nano is set as EDITOR if it isn't already set
49a47e
# This is set as a universal variable so that any other definition
49a47e
# by the user would win
49a47e
# Cf. https://fishshell.com/docs/current/index.html#variables-scope
49a47e
49a47e
if ! set -q EDITOR;
49a47e
	set -x EDITOR /usr/bin/nano
49a47e
end