https://stackoverflow.com/questions/25088699/make-fish-functions-private
1function outer2 function inner_func3 echo "I still find this function via automplete."4 echo "Not anymore!!"5 functions -e inner_func6 end7 # Let's test this!8 inner_func9end10
11
12$ outer13I still find this function via automplete.14Not anymore!!15$ inner_func1 collapsed line
16fish: Unknown command 'inner_func'