The plug-ins here are mainly cedet, ecb, csloud, and mew. There are many other plug-ins on the Internet, most of which are single el files and put them in the site-lisp directory. you can load emacs. Just now, there are a lot of files and it looks complicated. However, it is very easy to install it in linux. It takes three steps:./configure, make, and make install. In the winodws environment, you need to pay more attention to installation.
My environment: windows xp sp2, emacs 22.3, cedet 1.0pre4, ecb2.32, cs000015.6, mew 6.15. The plug-ins can be viewed by google. In addition, cygwin and GetGnuWin32-0.6.19 are installed on my system, both of which are seen in the emacs help documentation, one of which is enough to install, if you install gnu tools by compiling source code in windows, these tools are very convenient. Google to find their home page and.
The previous installation of these plug-ins is very simple, directly decompress them, and then under cygwin. /configure, make, and make install. You can feel and understand this. It doesn't matter if an error occurs in one of these three steps, the main role of the three steps is to call emacs to compile the el file into an elc file during the make step, which improves the loading speed of emacs. Directly decompress the package, or the three steps are completed, or an error occurs in one step. Copy the decompressed folder to the site-listp directory in the emacs installation directory, each directory after the plugin is decompressed contains an INSTALL or README file, which is not very long. The installation and loading methods are described in detail. You must install cedet before installing ecb.
In addition, cedet = collection of emacs development enviroment tools, including eieio, semantic, ede, speedbar, ecb = emacs code browser. cscope is also a powerful helper code. Each plug-in contains detailed documents.
In addition, we recommend that you first run addpm.exe under emacs/binto install emacs. It sets the registry information. If you find the full path of the checking for emacs secure file in./configure stage, you can.
For the installation of mew, almost all the documents on the Internet are installed by compiling the source code. I wonder that they can successfully compile the source code in windows, but I have never succeeded, I tried to modify the Makefile and other files. In fact, downloading the mew for installation file from the mew's main interface is the installation file, directly execute it, and then follow its instructions to automatically complete the next installation. If mew4.1 is installed, the. emacs file is automatically modified. If mew6.1 is installed, You need to manually modify the. emacs file to load mew. The mew configuration of mew6.1 can also be placed in the. emacs file ~ /. Mew. el file.
After installing mew, you still need to read its documentation for setting mew. It is very easy to set pop3. The main problem you encounter when setting yourself is the setting of smtp mail sending, set the smtp-auth-list variable. The following two articles are good at setting and using mew:
Http://learn.tsinghua.edu.cn: 8080/2004211031/publish/GNU/mew.html
Http://zhdotemacs.sourceforge.net/emacs/x382.html
The following is the setting of the email account in my. mew. el file, which can receive and send emails normally:
- (Setq mew-config-alist
- '("Default"
- ("Name". "WangHaibin ")
- ("User". "sea_1985098 ")
- ("Mail-domain". "126.com ")
- ("Pop-server". "pop3.126.com ")
- ("Pop-port". "110 ")
- ("Pop-user". "sea_1985098 ")
- ("Pop-auth". pass)
- ("Smtp-server". "smtp.126.com ")
- ("SMTP-Port". "25 ")
- ("SMTP-user". "sea_1985098 ")
- ("SMTP-auth-list". ("plain" "login" "CRAM-MD5 ")))
- ("163"
- ("Name". "wanghaibin ")
- ("User". "sea_1985098 ")
- ("Mail-domain". "163.com ")
- ("Pop-server". "pop.163.com ")
- ("Pop-Port". "110 ")
- ("Pop-user". "sea_1985098 ")
- ("Pop-auth". pass)
- ("Smtp-server". "smtp.163.com ")
- ("Smtp-port". "25 ")
- ("Smtp-user". "sea_1985098 ")
- ("Smtp-auth-list". ("PLAIN" "LOGIN" "CRAM-MD5 ")))))