Tyler
Tyler

Reputation: 1050

Is there an Emacs mode for .tac files in Twisted?

I've been working through the Twisted tutorials and have gotten to finger11.tac, linked here. Does anyone know if there's an Emac's mode that will do tabs and syntax highlighting for the .tac file type?

Thank you for your time.

Upvotes: 1

Views: 82

Answers (1)

Ignacy Moryc
Ignacy Moryc

Reputation: 169

It looks like a regular python source file so this should do the trick:

(add-to-list 'auto-mode-alist '("\\.tac$" . python-mode))

Upvotes: 4

Related Questions