Komodo is a code editor for several languages (including PHP, Python, JavaScript, XSLT, XML, XHTML, and HTML) which provides syntax highlighting, autocomplete, FTP/SFTP support, etc. It is available for free as Komodo Edit, or for profit as the larger Komodo IDE.

learn more… | top users | synonyms

0
votes
0answers
62 views

print(“hello world”) syntax error python komodo edit [closed]

I am a total noob! but I have looked an my komodo edit is set up for python 3 .... very simple command print("hello world") and it wont work...why? I keep getting SyntaxError: EOL while scanning ...
1
vote
2answers
40 views

I need help recognizing files in komodo in order to run them in python

I am just learning python as my first programming language, and I just installed python 3.3, 64 bit on my windows 7 OS. I installed komodo edit 8.0, and I am trying to print ('Hello world'). I set up ...
0
votes
1answer
17 views

No Komodo preview available for html file with php extension

I just started using the Komodo html editor. I want to make html pages with a .php extension so I can use php include on the pages. But, when I do so, I lose the ability to preview the file in ...
0
votes
0answers
11 views

How do I set the default location when opening files in Komodo Edit?

I use Komodo Edit to do all of my coding. All of my files are located in my WAMP server installation (W:/wamp/www). It gets annoying to have to find my way to that directory every time i want to ...
1
vote
2answers
48 views

How can i enable syntax highlighting on “large” files in Komodo Edit?

Komodo edit 8 disables syntax highlighting on large files for performance reasons. Is there anywhere to tweak the threshold, or disable the disabling completely? My prefs.xml has: <long ...
0
votes
2answers
116 views

Komodo Edit disable autocomple

I am using Komodo Edit 8 and its autocomplete feature is totally annoying. As soon as I type "for i" , it autofills in this: for i in range: code Now i have to delete it manually to continue ...
0
votes
1answer
41 views

How to hide Status Bar in Komodo Edit

Hellow Im using Komodo Edit and want to hide status bar Maybe where is some options to shell execution ?
5
votes
2answers
212 views

Komodo 7 or 8 code completion for django

I am using Komodo 7 for writing my django/python code. There is one thing that I really liked when I used Eclipse for my python stuff and it was that I could do : assert ...
1
vote
1answer
65 views

RegEx | Komodo Edit - Remove duplicate search strings

Note that this has been asked alot before but there was no answer which worked properly. Better if you try it yourself with the provided example. The wanted RegEx is to remove duplicate strings using ...
1
vote
3answers
87 views

Whitespace problems with python

I'm currently using Komodo Edit in Windows 7, however, I have experienced this problem on my Mac with TextWrangler. For whatever reason I'm getting some kind of whitespace error which is a huge ...
1
vote
0answers
83 views

Komodo IDE Xdebug remote debugging URI Mapping not working

I have remote debugging working with Xdebug, which works properly (I guess) when I use MacGDBp as a debugging tool. I've got Komodo 5 hooked up to listen on port 9000, and when I launch an Xdebug ...
0
votes
2answers
132 views

create a .zip file for backup in python 3 with os x

I am new to programing python (5 days now) and have ran into a problem that i can't seem to find the answer to in this forum. i would appreciate any help and a detailed explaination would be very much ...
0
votes
1answer
183 views

notepad++ color scheme for komodo ide [closed]

I'm using notepad++ right now but I want to switch to komodo ide but I don't like the It's color scheme. is there any color scheme for komodo ide that looks like notepad++?
-1
votes
1answer
37 views

How to convert komodo project to netbeans project? [closed]

when i found our php project builded by komodo ide. it was hard adjust to control by the komodo set. so i want convert komodo project to netbeans. is there have any soluction? How to convert komodo ...
0
votes
1answer
206 views

Using Xdebug with Netbeans or Komodo fails when connecting to Mysql

I am trying to get either NetBeans or Komodo IDE to remotely debug PHP. I have a remote website installed on the development machine which is a Mac running Mountain Lion. Xdebug is installed. The ...
0
votes
1answer
117 views

Changing tab icons in Komodo Edit

I would like to change the default blank tab icons in Komodo, but couldn't find the right CSS selectors. I created userChrome.css file that works and I could target the language-specific tabs by: ...
0
votes
1answer
46 views

Komodo Project Template Macros

What is the use of oncreate macro in komodo project? How it could be used in Ruby on rails?
1
vote
0answers
87 views

How do I connect Komodo to my sql server

I wonder if someone help me, this is my set up: I am on a windows 7 machine running a ubuntu virtualbox as my local web server and database server (mysql). I have just got hold of a copy of Komodo ...
0
votes
1answer
71 views

specman on Komodo

I have 2 problems i can't seem to fix: 1) For some reason Komodo won't highlight any methods in my .e files, even though the default language is specman-E, and the file set to the proper language. ...
1
vote
1answer
75 views

Komodo IDE 7.0 'link on automatic parenthesis closing'

Does Komodo IDE have an option similar to PyDev in Eclipse for tabbing out of autocompleted parentheses and quotation marks? I have Komodo set to insert closing quotations and parentheses, but find it ...
0
votes
1answer
101 views

How to enable mysql support in Komodo 7.1?

In Komodo 6 I can connect to my mysql database but not in Komodo 7.1? When I want to add my mysql connection to Komodo it gives me sqlite 3 support only?! How can I add my mysql connection to Komodo ...
1
vote
1answer
55 views

Komodo 7 cannot connect to mysql?

I've update my Komodo 6 to Komodo 7 but now I cannot connect to my 2 mysql database. One is localhost the other remote. I've verified the user and password and the socket it seems all right. What can ...
0
votes
1answer
70 views

Why does komodo edit require a duplicate .py file to execute my commands?

I am using Komodo edit 7.1 on a macbook pro running OS X mountain lion Note that the duplicated file needs a space at the beginning. e.g: to execute hello-world.py, I wrote the code given in the ...
1
vote
1answer
115 views

Create a New Command or Macro in Komodo 7.1 IDE to save and run a python file

How can I create a New Command or Macro in Komodo 7.1 IDE to save and run a python file? I want the output to go to a New Console. Not the Command Output Tab.
1
vote
2answers
584 views

anonymous function doesn't always return a value

I've got JavaScript code like this => (function(){ document.getElementById("element").onclick = function(){ var r = confirm("Are you sure ?"); if (r){ return true; ...
1
vote
2answers
347 views

Can't get PHP debugging to work with Komodo (but I'm almost there!)

I posted about this a week or so ago but since then I've done some further troubleshooting so I thought it was worth posting again: I'm trying to set up PHP debugging in Komodo 7, using the Xdebug ...
3
votes
2answers
217 views

How to take advantage of the autocomplete with Komodo

I am a noob to Komodo and I'm trying to figure out how to use it to my best advantage. One thing keeps bugging me & there's probably a very simple answer. As an example, when I type ...
0
votes
1answer
137 views

Setting up the Komodo IDE with XDebug for step-through PHP debugging

I'm currently running Komodo 7 and have XDebug set up on PHP 5.3.1, which is installed as part of XAMPP 1.7.3. All of this is running on Mac OS X 10.7. Until I upgraded XAMPP (from version 1.0.1) ...
1
vote
1answer
223 views

How do I write a macro in Komodo Edit IDE?

I need to have a macro run when I save a file. I have the code for the file save, i just don't know the code to wrap round it for triggering it when saving. I think komodo edit is written in Python, ...
0
votes
0answers
168 views

How do I debug PHP code in Chrome using Komodo IDE? [duplicate]

Possible Duplicate: Can’t get PHP debugging to work with Komodo (but I’m almost there!) I installed 'XDebug Enabler' and 'XDebug Helper' Chrome extensions and use Komodo IDE 7. I enabled ...
0
votes
1answer
130 views

Debugging django with Komodo IDE 7 doesnt break on breakpoints

I am using Komodo IDE 7 with a Django 1.4 using Python27. I have been using the remote debugging option of Komodo IDE 7 but it seems to not responed to my breakpoints. If I break in my model ...
0
votes
1answer
78 views

how to add to PATH variable in OSX

I'm going to try building a custom language extension for Komodo Edit. In order to build an xpi file, I need to add something to the PATH variable. I'm not really familiar with the command line, so ...
1
vote
2answers
247 views

jquery support works in html but not in .js?

Trying out komodo to build a jquery ui widget.. I enabled the jquery api reference and in a .html file it works great.. I then open my widget.js file and type in; (function($) { followed by $. I ...
3
votes
1answer
157 views

How to change error colors for Komodo IDE color scheme

I'm customizing color scheme, and almost everything working right. Except command output tab is showing errors in red italic font, color settings for which I cannot find anywhere! In font&color ...
2
votes
1answer
736 views

Komodo Edit Function and Require autocompletion

I'm not sure what to call it so I'm calling it hints. I notice that whenever I'm calling a function, and I hover over that line, little popup bubbles appear that show me the first comment in said ...
1
vote
1answer
43 views

How can I delete a table with Komodo MySQL plugin?

I've setup a Komodo remote database server with a MySQL plugin loaded and I want to empty a table. I select the table and change to the "query" tab in the MySQL plugin, but when I run "truncate ...
1
vote
1answer
601 views

Configure Komodo Edit for Python 3.2

I've installed Python3.2 for Komodo Edit 7 but can't get KE to recognise it. Under Edit, Preferences, Languages, Python 3 I've pointed it at my interpreter "C:\Python32\python.exe". I've tried ...
1
vote
1answer
205 views

komodo IDE -> remote debug php using komodo+xdebug: how to watch the $_SERVER variable?

I've setup komodo IDE together with xdebug to do remote debugging PHP. Everything is working fine. Now i want to watch some variables while debugging is in progress. I can watch any variables without ...
1
vote
1answer
156 views

Cygwin reverse shell xdebug Windows 7 Komodo session not working?

I've a webserver with xdebug 2.0.3 and Komodo 6 with Windows 7 64 bit but I can't connect to xdebug? I've tried a reverse shell with cygwin and I can connect to my server however when I try the ...
1
vote
1answer
167 views

Can't run Python 'Hello World' in Komodo

I have Python 2.7.2 (64 bit) and Komodo IDE 7.0. When I try to run Hello World or a sample or an empty file in Komodo I get the following error: UnicodeDecodeError: 'ascii' codec can't decode byte ...
0
votes
1answer
113 views

Can't open a xdebug session with a vmware guest os?

I've a vmware guest os with a webserver and xdebug 2.1.2 and I want to work from my host os with the remote debugger and Komodo IDE. How must I configure xdebug and Komodo to make it work? I've tried ...
1
vote
2answers
165 views

Full file code screenshots in komodo notepad or any free editor

How do you take a screen shot of a full page of file code? I have some php / python files spanning over 500 lines of code and I would like to take a full screen shot of the whole screen code ...
2
votes
1answer
115 views

Down key behaviour when tabbing in Komodo Edit 7

I recently upgraded to Komodo Edit 7 from v6. In previous versions if I was adding tabs to the beginning of lines I could press down and the cursor would automatically move to the beginning of the ...
0
votes
1answer
425 views

How to configure Komodo edit to work with virtualenv or rvm?

Is it possible to configure Komodo edit to work with virtualenv and/or rvm? I'm on linux mint 12
0
votes
1answer
196 views

Can't open multiple tabs in Komodo Edit/IDE 7.0.2

I cannot open more than one file in Komodo Edit/IDE 7.0.2. I have removed the /.komodoedit folder to resolve this problem at startup. It opens the first document, but I see this warning in the log: ...
0
votes
1answer
251 views

Print into output window in Komodo [duplicate]

Possible Duplicate: Komodo - watch variables and execute code while on pause in the program I am using Komodo IDE with Debug in separate console window option in order to debug curses based ...
1
vote
1answer
352 views

Debug Javascript in Komodo Extension

You can put alert(SOMETHING) into Javascript code to catch errors or see what is happening. Most of the time this is fine. But if you want to show a lot of information (like the properties on an ...
1
vote
3answers
521 views

Perl script compilation into .exe error

I am trying to create a .exe in perl. It works fine until I try to compile it into an exe. I am using Komodo IDE 5. I have posted my script and the error below. I have added the modules, ...
1
vote
1answer
334 views

Komodo Edit autocompletion JS object literal

The problem is Komodo intelli-sense doesn't see object methods defined this way: var App = window.App || { method: function() { ... } } Typing "App." gives no result. However, defining ...
1
vote
1answer
585 views

Komodo IDE 7 crashes on Ubuntu 11.10

Starting Komodo IDE 7 on Ubuntu 11.10 crashes in libcrypto.so during startup (see this forum discussion): #0 0xb121ffbc in EVP_PKEY_CTX_dup () from /lib/i386-linux-gnu/libcrypto.so.1.0.0 #1 ...

1 2 3