Purpose: to discuss the EMACS editing environment. ---- First, you can find Vim at http://www.vim.org/ ---- * Tcl embedded within Vim [http://vimdoc.sourceforge.net/cgi-bin/vim2html2.pl?page=if_tcl.txt] * [Tags for Vi/ViM editing] * google thread about using Tcl in Vim [http://groups.google.com/groups?th=24332f92a66fdcc9] ---- '''Configuring Vim to conform to the [Tcl Style Guide]''' indenting set autoindent " keep the previous line's indentation set shiftwidth=4 do not inadvertantly break a line set textwidth=0 prevent the comment character from forcibly being inserted in column 1 set cinkeys-=0# set indentkeys-=0# ---- [Category Application]