As you know, I'm adding more arrows to the code in this answer (maybe tomorrow). At this point, I'd like to overwrite the arrows declarations so that one can simply write -latex instead of -latex new, but TikZ gives me an error because the arrow names have already been used. Is there a way to bypass this behaviour and redefine an arrow tip?
Example of code:
\documentclass[tikz, border=1pt]{standalone}
\usepackage{tikz}
\pgfarrowsdeclare{space}{space}
{
\pgfutil@tempdima=0.88pt%
\advance\pgfutil@tempdima by.3\pgflinewidth%
\pgfarrowsleftextend{0pt}
\pgfarrowsrightextend{\pgfutil@tempdima}
}
{}
\begin{document}
\begin{tikzpicture}
\draw [-space] (0,0) -- (1,0);
\end{tikzpicture}
\end{document}