Remove setupcommandalias (as it was moved to zzz_earlyload)
diff --git a/modules/neovim/binds/binds.vim b/modules/neovim/binds/binds.vim
index e214900..ad36b97 100644
--- a/modules/neovim/binds/binds.vim
+++ b/modules/neovim/binds/binds.vim
@@ -16,12 +16,6 @@
vnoremap // y/\V<C-R>=escape(@",'/\')<CR><CR>
-fun! g:SetupCommandAlias(from, to)
- exec 'cnoreabbrev <expr> '.a:from
- \ .' ((getcmdtype() is# ":" && getcmdline() is# "'.a:from.'")'
- \ .'? ("'.a:to.'") : ("'.a:from.'"))'
-endfun
-
augroup vimrc-auto-mkdir
autocmd!
autocmd BufWritePre * call s:auto_mkdir(expand('<afile>:p:h'), v:cmdbang)