Mostrando entradas con la etiqueta textmate. Mostrar todas las entradas
Mostrando entradas con la etiqueta textmate. Mostrar todas las entradas

6 de junio de 2013

Haskell in TextMate

How to install the bundle:
$ mkdir -p /Library/Application\ Support/TextMate/Bundles
$ cd /Library/Application\ Support/TextMate/Bundles
$ git clone https://github.com/textmate/haskell.tmbundle
That's it!

16 de mayo de 2011

Haskell in TextMate

How to install the bundle:

mkdir -p /Library/Application\ Support/TextMate/Bundles
cd /Library/Application\ Support/TextMate/Bundles
git clone https://github.com/textmate/haskell.tmbundle
That's it!

Some references here: http://pysvn.tigris.org/project_downloads.html

6 de mayo de 2011

Django mode for TextMate

Developing with Django using TextMate?

Take a look at this!

http://code.djangoproject.com/wiki/TextMate

Installation:
mkdir -p /Library/Application\ Support/TextMate/Bundles
cd /Library/Application\ Support/TextMate/Bundles
svn co http://svn.textmate.org/trunk/Bundles/Python%20Django.tmbundle/
git clone https://github.com/textmate/python-django-templates.tmbundle.git
Usage:

Just set the language of your files to "Python Django" and that's it!

PEP8 check in TextMate

I think any serious programmer that codes with Python should try to get his/her code as close as possible to PEP8.

Many IDEs have their own way to perform static PEP8 code checks. If you use TextMate, here is a way to go:


https://github.com/astrofrog/python-pep8-tmbundle

Installation:

cd ~/Library/Application\ Support/TextMate/Bundles/
git clone git://github.com/astrofrog/python-pep8-tmbundle.git "Python PEP8.tmbundle"
cd Python\ PEP8.tmbundle/
git submodule init
git submodule update
osascript -e 'tell app "TextMate" to reload bundles'

Usage:
shift + crtl + command + v

And that's it!