On 10/18/07, iain duncan <[EMAIL PROTECTED]> wrote: > > On Thu, 2007-18-10 at 07:20 +0200, Christoph Zwerschke wrote: > > Wu-Man wrote: > > > I'm new to TurboGears. I was wondering if there is a preferred Python > > > source code editor or some sort of IDE environment for development in > > > TurboGears that anyone can recommend. > > > > I have made very good experiences with Komodo IDE 4: > > http://www.activestate.com/Products/komodo_ide/feature_list.plex > > > > WingIDE and PyScripter are other good alternatives. > > > > You can also start with a simple editor such as SciTE, or use the good > > old emacs or vi which have benefits of their own (see > > http://www.viemu.com/a-why-vi-vim.html). > > BTW, just for people new to vi/vim/gvim. If you haven't used it at all > before, you won't know the differences between the breeds. My suggestion > is to start with GVIM or Cream which are both gui versions of vim with > mouse controls and gui menus that look at least somewhat like what you > will be used to. Terminal editors are kinda freaky to folks who have > never used something like that before and might make you dismiss > otherwise very powerful apps! >
Download VIM Install it and then when you open it: edit -> startup settings Inside put these two lines: filetype on syntax on this will make turn on color syntax even in command line. Now if you have autocomplte module you can press CTRL-N in insert mode and you will get a popup menu with options. That is cool! Don't Forget to set the indent to 4 spaces: http://lucasmanual.com/mywiki/FrontPage#head-8ce19b13e89893059e126b719bebe4ee32fe103c --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

