Differences between revisions 11 and 13 (spanning 2 versions)
Revision 11 as of 2005-02-10 11:58:23
Size: 946
Editor: www
Comment: i'm very very sorry. was just wondering what a wiki is. sorry again.
Revision 13 as of 2007-01-23 06:14:31
Size: 1149
Editor: h-67-100-125-122
Comment: pythoncomplete link
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
ViImproved (VIM) is an improved version of the editor "vi", one of the standard text editors on UNIX systems. It has all the features you'll ever need from an editor, and probably three times that many more that you'll never use ;-) The newer versions also include a 'vimdiff' mode that you can use to diff and merge file(s). Oh, I didn't mention it's also scriptable in Python, and there's a graphical version: GVIM. Get it from http://www.vim.org/. VI Improved (VIM) is an improved version of the editor "vi", one of the standard text editors on UNIX systems. It has all the features you'll ever need from an editor, and probably three times that many more that you'll never use ;-) The newer versions also include a 'vimdiff' mode that you can use to diff and merge file(s). Oh, I didn't mention it's also scriptable in Python, and there's a graphical version: GVIM. Get it from http://www.vim.org/.
Line 6: Line 6:

Vim 7.0 (released mid-2006) includes the Intellisense-like omni-completion for several languages. Here is the latest version of [http://www.vim.org/scripts/script.php?script_id=1542 pythoncomplete].

VI Improved (VIM) is an improved version of the editor "vi", one of the standard text editors on UNIX systems. It has all the features you'll ever need from an editor, and probably three times that many more that you'll never use ;-) The newer versions also include a 'vimdiff' mode that you can use to diff and merge file(s). Oh, I didn't mention it's also scriptable in Python, and there's a graphical version: GVIM. Get it from http://www.vim.org/.

VIM is also available in your favourite OS. The new version 6.0 has folding. Folding makes your life easy when you have some long files.

You can download many scripts and learn new tips from the site http://vim.sourceforge.net

Vim 7.0 (released mid-2006) includes the Intellisense-like omni-completion for several languages. Here is the latest version of [http://www.vim.org/scripts/script.php?script_id=1542 pythoncomplete].


You can automatically enable syntax coloring and automatic indentation for Python code by adding the following lines to your ~/.vimrc file:

{{{autocmd BufRead,BufNewFile *.py syntax on autocmd BufRead,BufNewFile *.py set ai}}}


CategoryEditors

Vim (last edited 2013-06-18 05:14:05 by Apes)

Unable to edit the page? See the FrontPage for instructions.