You are not logged in.
Looks like my latest update resulted in vi being installed -- maybe it was installed before as well, but /usr/bin/vi -> /usr/bin/vim ? It took me a while to find out why my .vimrc was suddenly being ignored (I'm one of those people that types 'vi' and expects vim
).
~Felix.
Offline
alias vi=vim
Problem solved.
Offline
I am new to Archlinux. Having vim called vi was the only (annoying) problem after installation. What's the rationale for this? All distributions I can boot make a vi symlink. I have my vim customizations on my home partition which is mounted in Arch as well. I needed
ln -s ~/.vimrc ~/.virc
ln -s ~/.vim ~/.vito get my custom vim environment working. I need alias vim=vi and not the other way round.
Offline
I am new to Archlinux. Having vim called vi was the only (annoying) problem after installation. What's the rationale for this? All distributions I can boot make a vi symlink. I have my vim customizations on my home partition which is mounted in Arch as well. I needed
ln -s ~/.vimrc ~/.virc ln -s ~/.vim ~/.vito get my custom vim environment working. I need alias vim=vi and not the other way round.
If I understand you correctly you type vi and expect vim to start. aliasing vi to vim would solve this, because alias are evaluated before $PATH. You would type vi and vim would start which will read ~/.vimrc.
Offline
pacman roulette : pacman -S $(pacman -Slq | LANG=C sort -R | head -n $((RANDOM % 10)))
Offline
Thanks. Please drop a line about this in the Beginner's Guide. Getting preexisting .vimrc and .vim user customization working needs the aformentioned symlinks with the basic vi setup. And unsetting alias vi=vim. Btw I don't need power vim, it's all about beeping, color and syntax.
Offline
Thanks. Please drop a line about this in the Beginner's Guide. Getting preexisting .vimrc and .vim user customization working needs the aformentioned symlinks with the basic vi setup. And unsetting alias vi=vim. Btw I don't need power vim, it's all about beeping, color and syntax.
Everyone can edit the wiki. Feel free to create a wiki account and do the changes yourself.
Offline