# Defined in /tmp/fish.KYnv1Y/add-inspection-prep-to-todo.fish @ line 2
function add-inspection-prep-to-todo --description 'Adds a bunch of stuff from a text file to end of todo.txt file'
	if [ -z "$argv" ]; # no arguments
        echo "No arguments supplied. Provide a project name."
        return
    else
	    sed "s/#projectname/\#\"$argv[1]\"/g" ~/todo/templates/Inspection_Plan_Template_For_todo.txt >> /home/lemon/todo/todo.todo
    end 
end