On Tue, Jan 05, 2010 at 10:50:17AM -0800, [email protected] wrote:
> 1. I often found missing the debug feature closely like Visual
> Studio.

I can't speak to this since I don't know what this Visual Studio
feature does.  I don't run any python debuggers from Emacs.  For that
matter, I tend not to use the python debugger.

> 2. I am not sure how to use the mako syntax high lighting in emacs

My emacs customization is pretty thin:

You want to use mmm-mako.  Copy mmm-mako.el to:
$emacs/site-lisp/mmm-mako/

And put this into your .emacs:
(load-library "mmm-mako")
(add-to-list 'auto-mode-alist '("\\.mako\\'" . html-mode))
(mmm-add-mode-ext-class 'html-mode "\\.mako\\'" 'mako)

There's no support for Mako (I still have a lot of mako templates).  I
just use html-mode:
(add-to-list 'auto-mode-alist '("\\.myt\\'" . html-mode))

I also like to enable javascript-mode for .js:
(autoload 'javascript-mode "javascript" nil t)
(add-to-list 'auto-mode-alist '("\\.js\\'" . javascript-mode))

> 3. I run the paster shell on terminal (outside emacs, use gedit to
> view the log file)

Me too - I prefer to use ipython in a terminal to running inside
emacs.  I don't know if there is a key combo to launch paster shell in
an emacs shell, but in general, I don't like emacs shell.  Emacs grabs
too many Control key combos!

-- 
Ross Vandegrift
[email protected]

"If the fight gets hot, the songs get hotter.  If the going gets tough,
the songs get tougher."
        --Woody Guthrie

Attachment: signature.asc
Description: Digital signature

Reply via email to