Tagged Questions
Komodo is a code editor for severals languages. Php, Pyhton, Javascript, Html with syntax highlights, auto complete, FTP/SFTP support, etc...
23
votes
20answers
805 views
What are the most important features of an IDE for Perl development?
As some of you might know I am the lead developer of Padre, the Perl IDE. In the first year of its development Padre became an acceptable text editor with some extra features for Perl development.
...
10
votes
9answers
13k views
Komodo Edit and Notepad++ ::: Pros & Cons ::: Python dev [closed]
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...
9
votes
2answers
354 views
How can I integrate Moose into Komodo?
ActiveState's Komodo is my preferred Perl IDE on OS X and XP. Recently I've begun coding new projects using Moose.
Has anyone found a way to teach Komodo how to "identify" Moose's Attribute and ...
8
votes
5answers
1k views
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:
{% ...
8
votes
5answers
11k views
How to start IDLE (Python editor) without using the shortcut on Windows Vista?
I'm trying to teach Komodo to fire up IDLE when I hit the right keystrokes. I can use the exact path of the shortcut in start menu in the Windows Explorer location bar to launch IDLE so I was hoping ...
6
votes
2answers
1k views
Komodo Python auto complete: type inference by variable metadata?
I'm using Komodo Edit for Python development, and I want to get the best out of the auto complete.
If I do this:
a = A()
a.
I can see a list of members of A.
But if I do this:
a = [A()]
b = ...
5
votes
3answers
1k views
5
votes
1answer
1k views
Indent guide plugin for gedit (python)
See the indent guides? They're damn helpful when writing Python code. Any chance I could get something similar for gedit? I wouldn't mind having to write my own plugin, as long as it's in Python... ...
4
votes
1answer
150 views
Is it possible to use komodo edit as git core.editor (i.e. without forking)?
When using a gui text editor (e.g. komodo edit) as core editor for git (commit messages), that editor process must not be forked or else git will assume an empty commit message, because it "thinks" ...
4
votes
1answer
303 views
Komodo IDE 6's slow autocomplete problems with Javascript
I've been trying out Komodo IDE 6 for the last few days.
I've always liked Komodo but I'm starting to get annoyed by something:
The autocomplete is way too slow/buggy.
Certain variables just won't ...
4
votes
6answers
1k views
What's a free Perl IDE for Windows?
I am looking for a Windows Perl IDE with debugger like Komodo but free.
I have seen Eclipse+EPIC but I don't want to install Eclipse here .
Padre doesn't have debugger built in.
3
votes
1answer
195 views
Writing Komodo Edit extensions in Python
Has anybody got any idea how to write an extension for Komodo Edit 6 in Python?
3
votes
1answer
287 views
Getting Unit Tests to work with Komodo IDE for Python
I've tried to run the following code on Komodo IDE (for python):
import unittest
class MathLibraryTests(unittest.TestCase):
def test1Plus1Equals2(self):
self.assertEqual(1+1, 2)
Then, ...
3
votes
4answers
481 views
How do I enable PerlCritic support in Komodo IDE 5.1 on Windows?
I'm trying to enable PerlCritic support in Komodo.
The official word from ActiveState, the makers of Komodo IDE 5.1 (Win 32) is:
"To enable PerlCritic support, please install the 'Perl-Critic' and ...
3
votes
5answers
654 views
Komodo Extension
Continuing on with my Python learning, I just installed Komodo edit, are there any recommended add ins/extensions that I should include? Any recommendations on using it or another GUI designer ...
2
votes
1answer
93 views
Komodo IDE FTP (ASCII, binary) end-of-line characters
I've some problem when working on remote files (perl scripts) with Komodo IDE. There is (as far as I know) no way to change ftp transfer mode from binary to ASCII, which result in "^M" character at ...
2
votes
1answer
169 views
What would Komodo Edit's language association be for lesscss?
I've created a file association of *.less to CSS for editing lesscss files in Komodo Edit. I want this association so that the editor can do quick auto completes, but while it's now correctly ...
2
votes
2answers
120 views
Python macros on Mac using Komodo
I'm using Komodo IDE, version 6.1.1, build 61234, platform macosx-x86. I'm also using Python 3.2 and Python 2.7. I've just moved to using (my first) Mac. OS version 10.6.?
On my Windows machines I ...
2
votes
0answers
108 views
Calltips/Docstring while viewing function list?
I just recently switched to Komodo for Python programming, and I'm loving it so far. I love how if I type a function name, followed by the open-paren (, it opens the calltip/docstring. I also love ...
2
votes
1answer
64 views
komodo - correct identation, simple question
How i can apply a simple correct identation to all of my code? like the eclipse for example...
there is possible, right?
thanks
2
votes
1answer
108 views
In Komodo IDE, is it possible to tell a file what's included in it so that IntelliSense works?
File A includes files B and C.
C thus has access to all the stuff defined in A and B, but C doesn't know that. How can I tell C that it actually has access so that IntelliSense works?
Perhaps a ...
2
votes
1answer
80 views
Workaround for ActiveState Komodo bug with F10 keyboard shortcut?
I'd really like F10 to Step Over in my Komodo IDE, to match Visual Studio. Unfortunately F10 has been hardwired to select the File menu. This is a known bug (see ...
2
votes
1answer
86 views
Komodo Edit does not support shtml code hinting?
I have searched a lot about this feature but it seems that Komodo edit does not support any shtml intellisense.
I cannot believe this as I finally found a great HTML/CSS/JavaScript/jQuery editor but ...
2
votes
1answer
176 views
komodo how to refresh the directory tree status
in tird the right menu use refresh status,but it seems didn't work for me,i have delete or add some file in the tree display directory,but it didn't display them until i close the komodo edit,and ...
2
votes
1answer
349 views
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 ...
2
votes
1answer
70 views
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 ...
2
votes
1answer
257 views
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 ...
2
votes
6answers
981 views
Creating class instance properties from a dictionary in Python
I'm importing from a CSV and getting data roughly in the format
{ 'Field1' : 3000, 'Field2' : 6000, 'RandomField' : 5000 }
The names of the fields are dynamic. (Well, they're dynamic in that there ...
2
votes
1answer
371 views
Using the ALT key on Komodo for Mac OS X
I am using the Emacs keybinding on Komodo IDE where Komodo uses the command key for "Meta" by default. So you press Command-X when you normally press Alt+X for Emacs on Linux.
I want to use the ...
2
votes
3answers
3k views
Komodo Edit - code-completion for Django?
I've been using Komodo Edit for a small project in Django.
The code completion features seem to work pretty well for standard python modules, however, it doesn't know anything about Django modules. ...
2
votes
2answers
330 views
How can a Perl script detect if it is running within the Komodo IDE?
One way I found is to check if the Perl Debugger is "loaded" by checking for defined($DB::single) and assuming Komodo is active, if $DB::single is defined..
But this might also mean the script is ...
2
votes
4answers
649 views
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 ...
2
votes
5answers
5k views
Ruby gets function won't accept empty line more than once
I'm trying to write a simple ruby function that can prompt the user for a value and if the user presses ENTER by itself, then a default value is used.
In the following example, the first call to the ...
2
votes
1answer
1k views
How to load a python module into a fresh interactive shell in Komodo?
When using PyWin I can easily load a python file into a fresh interactive shell and I find this quite handy for prototyping and other exploratory tasks.
I would like to use Komodo as my python ...
1
vote
1answer
66 views
Virtualenv and Komodo IDE on Windows
As a developer that has worked on more than one python project at once, I love the idea of Virtualenv. But, I'm currently trying to get Komodo IDE to play nice with VirtualEnv on a Windows box. I've ...
1
vote
2answers
31 views
How do I insert an actual TAB in Komodo Edit 6.1
I am editing a Debian rules file (which uses makefile syntax) and need to insert an actual TAB character. However, pressing tab inserts four spaces as per my usual preferences (there is no indentation ...
1
vote
1answer
86 views
Running PowerShell Scripts in Komodo Edit
I have a hard time trying to run PowerShell Scripts from the "Run Command" within Komodo Edit on Windows 7.
The command that I am using is:
powershell -File "%F"
When I run it, it does not return ...
1
vote
1answer
38 views
Is it possible to disable specific warnings in Komodo Edit?
Komodo Edit divides warnings into two categories: regular and strict. Of the strict warnings, some - for example, the warning when a dictionary definition has a trailing comma - are useful to me, ...
1
vote
1answer
97 views
Adding a new folder to Komodo Edit
I am new to Komodo Edit (version 5.2 for Linux) and wish to add a new "live" folder to my project. What I mean by that is, I want a new folder to not only appear within my Komodo project but also for ...
1
vote
1answer
407 views
Auto-close HTML tags in Komodo Edit?
Is it possible to turn this on in version 6.1.1? I'm not seeing it...
1
vote
1answer
264 views
Add the current project to the python path with Komodo Edit
Ive been using komodo edit recently to go through a few django tutorials, and ive been impressed with the level of code completion it provides for the framework.
However what i really want it to do ...
1
vote
1answer
727 views
Komodo edit -auto-complete chained jquery
How do you get code hinting/completion for chained functions in Komodo edit.
I had it working in Komodo Edit 5, but I lost the ability when I upgraded to ver 6. Now it gives me code hinting for the ...
1
vote
2answers
97 views
finding all float literals in Python code
I am trying to find all occurrences of a literal float value in Python code. Can I do that in Komodo (or in any other way)?
In other words, I want to find every line where something like 0.0 or 1.5 ...
1
vote
1answer
317 views
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 ...
1
vote
1answer
166 views
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, ...
1
vote
1answer
333 views
Why Won't Komodo 6 Run or Debug Python 3 Code?
My problem:
I try to debug some python 3 code. Komodo gives me this error message:
"Komodo does not support execution of Python3 files through the debugger subsystem, please use a run command in ...
1
vote
3answers
310 views
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.
1
vote
1answer
247 views
How do you configure Komodo diff using tortoiseHg and beyondcompare?
I'm trying to configure Komodo IDE so that it integrates with tortoiseHg and my beyondcompare3 diff tool. The diff works fine in tortoiseHg, but when I try to do a diff in Komodo nothing happens, no ...
1
vote
1answer
84 views
Paste syntax highlighted code from Komodo?
I recently switched from using Vim in Puttytray on WindowsXP to Komodo on OSX. One of the features I miss is Puttytray used to let you copy the colored text out of whatever is in your terminal and ...
1
vote
2answers
435 views
Explore a COM Object in PHP
What would be the proper way to explode a COM object for debugging? I have a 3rd party function that returns a multilevel object. The documentation is non existant, so I'd like to be able to echo ...