summaryrefslogtreecommitdiff
path: root/functions/load-em.fish
blob: bde715325215367e9ddaac91a84bb9605ae79afe (plain)
1
2
3
4
5
6
7
8
function load-em --description 'Loads Fish shell function descriptions.'
# Load function information so it shows up in auto completion
# Original from https://github.com/fish-shell/fish-shell/issues/1915#issuecomment-72315918

  for i in (functions | tr , ' ')
    functions $i > /dev/null
  end
end