diff --git a/.config/nvim/plugin/vimrc/commands.vim b/.config/nvim/plugin/vimrc/commands.vim --- a/.config/nvim/plugin/vimrc/commands.vim +++ b/.config/nvim/plugin/vimrc/commands.vim @@ -1,8 +1,3 @@ -command! -nargs=+ CAlias call vimrc#CommandAlias() - -command! Gcd call vimrc#Gcd() -command! Hgcd call vimrc#Hgcd() - command! SyntaxCompleteOn setl omnifunc=syntaxcomplete#Complete command! Mksession execute "mksession! " . v:this_session @@ -13,19 +8,3 @@ command! MailPreview enew | set bt=n command! MailPreviewHTML enew | set bt=nofile | setf html | 0r # | exe 'norm! 0O```}O```' | silent exe '%!mutt-md2html' | 0 command! -nargs=* -complete=file Grep call vimrc#Grep() -CAlias Ag Grep -CAlias grep Grep - -CAlias Q q -CAlias Qa qa -CAlias W w - -CAlias gcd Gcd -CAlias hgcd Hgcd - -" make these default to one window/buffer too -CAlias doc ViewDoc! -CAlias help ViewDocHelp! -CAlias man ViewDocMan! -CAlias perldoc ViewDocPerl! -