commit b9a0b0b5c6e6082e1c14810b73e3870a6e64811b
parent b9a1519b6e8a12461598f266aafbcc62016f43fd
Author: Pollux <pollux@pollux.codes>
Date: Thu, 17 Jul 2025 23:37:51 -0500
fix: Vim remote command properly specifies server
Signed-off-by: Pollux <pollux@pollux.codes>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.zshrc.d/30_vim_remote.zsh b/.zshrc.d/30_vim_remote.zsh
@@ -1,5 +1,5 @@
if [ -n "$VIM_SERVERNAME" ]; then
- alias vim='/usr/bin/vim --remote --servername $VIM_SERVERNAME'
+ alias vim='/usr/bin/vim --servername $VIM_SERVERNAME --remote'
else
alias vim='/usr/bin/vim --servername $(uuidgen)'
fi