Description: Fix error message on double loading
 If the file plugin/remoteOpen.vim is loaded twice by vim (e.g. at both local
 and system-wide installation), errors about redefined commands are shown.
 This patch should fix this.
Author: Johann Felix Soden <johfel@gmx.de>
Bug-Debian: http://bugs.debian.org/444426

--- a/plugin/remoteOpen.vim
+++ b/plugin/remoteOpen.vim
@@ -34,8 +34,8 @@
 endif
 
 " Enclose <args> in single quotes so it can be passed as a function argument.
-com -nargs=1 RemoteOpen :call RemoteOpen('<args>')
-com -nargs=? RemoteInsert :call RemoteInsert('<args>')
+com! -nargs=1 RemoteOpen :call RemoteOpen('<args>')
+com! -nargs=? RemoteInsert :call RemoteInsert('<args>')
 
 " RemoteOpen: open a file remotely (if possible) {{{
 " Description: checks all open vim windows to see if this file has been opened
