komodoedit

Komodo Edit and Notepad++ ::: Pros & Cons ::: Python dev

I'm using Notepad++ for python development, and few days ago I found out about free Komodo Edit. I need Pros and Cons for Python development between this two editors... ...

Komodo Edit Changes Python sys.path If you "Show in Explorer"

I am using Komodo Edit, a code editor. When I right click on projects and click "Show in Explorer", it will pop up a box just like Windows Explorer at the directory my project is. This is very convenient. However, I noticed an insidious side effect. When you try to run a python file with this window that looks exactly like Windows Expl...

How to get the source code for Komodo Edit?

How do I get the source code for Komodo Edit? Komodo Edit is an open source text editor. I want to inspect and learn from the source code for Komodo Edit. In the download location, http://downloads.activestate.com/Komodo/releases/5.1.4/, I can only see binaries. Do you know how to get the full source code? Update 1: Apparently the ...

Komodo - watch variables and execute code while on pause in the program

With c# in the Visual Studio IDE I can pause at anytime a program and watch its variables, inspect whatever I want. I noticed that with the Komodo IDE when something crashes and it stops the flow of the program, I can do exactly the same. But for some reason, it seems that when I try to do the same when I manually pause the program, the ...

Komodo Edit 5.2 Django Template Syntax Error - Info: <head> previously mentioned

I am using Komodo Edit 5.2 for editing html and Django template files. It always shows a single syntax error inside the first {% block %} area on the first tag of my template. For example: {% extends "base.html" %} {% load i18n %} {% block title %}Hello{% endblock %} {% block content %} <p>Hello</p> <-- Syntax error on this singl...

Python + Komodo Edit

Hello all, I am trying to get scapy to auto complete in komodo edit with no success, has anyone successfully done this? Thanks, Python New Comer ...

Komodo Edit "new command" options memory

I am using Komodo Edit 5.2.4. I have set up a custom "new command" which takes some input from the user and executes a program with it. This works fine, but I want the ability to default the options to the options the user previously selected the last time they ran the command. I can't figure out how to do this, although I can see that ...

PHP Komodo getter/setter auto-generation

Does Komodo support getter/setter auto generation a la NetBeans or Eclipse? If so how do I use it? I can't seem to find it. ...

Komodo Edit auto-complete won't find a Python module.

I am using Komodo edit on a Python file on Windows. When I type import s it successfully lists all the importable files starting with s, including one of my modules in one of my directories. When I type import t it lists all the importable files starting with t, EXCLUDING one of my modules in the same directory. Even though Komodo can...

java Api catalog? komodoedit java auto complete feature

Hi by default komodo edit supports the following languages for its auto completion feature by default: Ruby: require, class modules (on . and ::), class variables and methods, method calltips. Python Perl PHP XSLT XML Tcl I am programming in java at the moment, and I need to have the auto completion feature with that language. Can so...

Advanced Find & Replace / Text Expand / Macros

Hopefully a nice quick one for someone. I'm working on a project that requires a specific link being written around 400 or so locations. Each link is the same, except it has the town's name in it, such as: <li><a href="/contact-details.html?location=Andover">Andover</a></li> I'm currently using Komodo Edit to write my projects, and I ...

How to convert an unicode JavaScript string into a byte array using Mozilla services?

I have a service writing remote files, but it requires a byte array as input. Rest of the interface provides only JavaScript unicode strings. No way to write them then. I found something like this in MDC: var converter = Components.classes["@mozilla.org/intl/scriptableunicodeconverter"] .createInstance(Components.interf...