Questions tagged [komodo-ide]

Is a cross-platform IDE for multiple languages, including Python, PHP, Ruby, Perl, Tcl, NodeJS, HTML, CSS and JavaScript. It includes syntax highlighting, auto completion, version control, and team collaboration. It is develop by ActiveState Software. The free version is called Komodo Edit

11 questions
4
votes
2 answers

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 legitimately running as perl -d under the…
lexu
  • 8,766
  • 5
  • 45
  • 63
2
votes
1 answer

How do I set breakpoints in Komodo IDE?

I've installed Komodo IDE and I would like to know where/how can I set the breakpoints so that 9th symbol on the top line |> understands it ? EDIT
user2925716
  • 949
  • 1
  • 6
  • 13
2
votes
1 answer

Using Pyral package with Komodo ide

I'm using Python, write down in Komodo IDE, to create toolkit that works with CA agile central API service(Rally) - Rally for Developer. When using GET HTTP request, I encounter with several problems: 1. Fetching partial records - if I set FETCH…
Aviv Cohen
  • 69
  • 6
1
vote
0 answers

How to fix error in step-by-step debugging of javascript in Komodo IDE?

I'm using the latest version of Komodo IDE (free version). I've set break points and set it to use Remote Debugging with chrome. But it does not stop execution at those break points. I'm getting this error that my page is unavailable for…
Clay Nichols
  • 11,848
  • 30
  • 109
  • 170
1
vote
1 answer

Error "Command not found" using Komodo IDE for Python

I'm using the Komodo IDE for Mac 10.10.5 and trying a simple code to run a youtube video via python. Once I save and run the python file, i get the following error: "/bin/sh: Python-1.py: command not found" I appreciate any help, thank…
Calviar45
  • 11
  • 2
0
votes
1 answer

Reading Debugger output in Komodo IDE for Tcl Languare

I am trying to understand errors and exceptions in Tcl. I have written a small code as follows proc Div3 {a b} { return [Div2 $a $b] } proc Div2 {a b} { return [Div $a $b] } proc Div {a b} { if {$b == 0} { error "Error generated…
The_Learner
  • 589
  • 1
  • 6
  • 16
0
votes
0 answers

Python3 Interpreter for Komodo IDE

I'm using Komodo IDE 11 and I want to program in Python 3.8.1. I already set a interpreter in Preferences > Languages > Python3, but it always give me the same error. File "/Applications/Komodo IDE…
Dreemurr23
  • 13
  • 2
0
votes
1 answer

How do you untoggle hiding toolbars and panels in Komodo IDE?

I am using Komodo 10. The tutorial gave me the following: I clicked on the "eye" icon and things went away. I see no way to get them to come back, that is "to toggle". This is what I see after clicking the "eye icon":
Scooter
  • 6,802
  • 8
  • 41
  • 64
0
votes
1 answer

Komodo 8.5: PHP 'block' and 'inline' snippets do not work where needed

I've just started using Komodo IDE 8.5.4 for editing a PHP project and want to use snippets to quickly type in the PHP start and end tags. The block snippet does produce this: and the inline snippet does produce this:
Annabel
  • 1,394
  • 14
  • 23
0
votes
2 answers

How to debug nodejs with komodo IDE?

I've created a project with komodo IDE: I create debug config: The program starts but dont stop at the breakpoint: What am I doing wrong? Is there any step-by-step info for this? Thanx.
Stepan Yakovenko
  • 8,670
  • 28
  • 113
  • 206