make bluefish t owork with zen coding


 
Thread Tools Search this Thread
Top Forums Web Development make bluefish t owork with zen coding
# 1  
Old 03-01-2012
make bluefish t owork with zen coding

Hi,

I have installed on bluefish on the computer that run windows 7 and the zen coding doesn't work.

I know that in order for zen coding to work it demand python.
I do have python 2.7 in the directory python27.


but when I check the built info I get:
Code:
This version of Bluefish was built with:
./configure  'CONFIG_SITE=win32/config.nsis'
gtk 2.24.8 (runtime gtk 2.24.8)
glib 2.28.8 (runtime 2.28.8)
with libenchant... yes
with libenchant >= 1.4... yes
with libgucharmap... no
with libgucharmap_2... yes
with python... no

How can I download version of bluefish that will be built with python?
So that the zen coding will work there.
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Bluefish: where are the preferences saved?

I have just tried out Bluefish as an alternative to my regular text editor. If I save the modified preferences and reboot, the preferences have to be reentered again. Does anyone know which file the preferences are saved in? The command find / -mmin -5 | grep bluefish yields zero hits. Thanks... (2 Replies)
Discussion started by: figaro
2 Replies

2. Gentoo

Creative Zen Sleek Photo...

Hi all, My thanks in advance for reading and any posts. Just wondering if anyone knows of anywhere where I can get a driver from for a creative zen sleek photo for redhad Fedora? I ordered it stupidly without making sure that it would work on Fedora, seems that it only works on WinXP. ... (2 Replies)
Discussion started by: B14speedfreak
2 Replies
Login or Register to Ask a Question
PYTHON-COVERAGE(1)					      General Commands Manual						PYTHON-COVERAGE(1)

NAME
python-coverage - measure code coverage of Python program execution SYNOPSIS
python-coverage -x module.py [ARG...] python-coverage -e python-coverage -r [-m] python-coverage -a [file...] DESCRIPTION
python-coverage executes a Python program and measures which of its statements are executed and which are not. It stores the information in the file .coverage in the current working directory. OPTIONS
-e Erase the .coverage file. -x Execute a Python module, giving it the remaining command line arguments. -r Produce a coverage report. -m With -r, show the line numbers that were missed by the execution. -a Annotate source files. For each source file foo, produce foo,cover, with executed lines prefixed by ">" and non-executed by "!". --help Produce a help summary. It might be more helpful than this manual page. AUTHOR
The python-coverage command is a one-line Python script which calls the coverage.py Python module to do all the work. The module was rigi- nally developed by Gareth Rees, and is now developed by Ned Batchelder. The module's home page is http://www.nedbatchelder.com/code/modules/coverage.html. This manual page was cobbled together by Lars Wirzenius for Debian, by copy-pasting from the help texts from the module. PYTHON-COVERAGE(1)