bill lam 写道: > $sudo apt-get build-dep vim # for console mode vim only > $sudo apt-get build-dep vim-gnome # for gnome gvim as well
That makes no difference in ubuntu. i.e. "sudo apt-get build-dep vim" is enough for make a gvim. (a gtk version) The only difference between gtk version and gnome version is the session support. to enable gnome session support you should edit the Makefile or give command-line option to .configure, no additional dependencies required. Compiling vim on Ubuntu is a very easy task and it definitely do not require an expert. Following my instructions do (much simpler): The first time to compile. 1. sudo apt-get build-dep vim 2. cd 3. svn co https://vim.svn.sourceforge.net/svnroot/vim/vim7 4. cd vim7/src 5. vi Makefile 6. make 7. sudo make install If you're using ubuntu, everything should work after that. if you want to edit any options, do that in precedure 5. if you want to upgrade your vim7 later: 1. cd ~/vim7 2. svn update 3. make 4. sudo make install then you have upgraded your vim to the newest version. Those instructions just complicate things, my instructions make every average user capable to compile vim. --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
