I know that if I press Meta + W on Mac (or probably Ctrl + W on Windows) I can close the currently selected buffer window, but is there any key binding that I could use to show/hide the same window, without having to push the "Preview Buffer In Browser" button each time ?
Hello,
First, thanks all Komodo Developers for developing such a great editor.
Can we move code line (or selected bunch of code block) one (or more) tab back in Komodo Edit? I couldn't find its key binding in preferences.
And one more question in HTML editor when I select a div or other tag I want to see its closing tag. For example
<div>(when I select this tag)
...
...
</div>(I want to select this too)
Thanks.
Hello,
Developer Sergey Chikuyonok recently released Zen Coding, a plugin for many popular editors (Aptana, Espresso, TextMate, GEdit, etc.) that provides advanced HTML generation.
The gist of it is that you write a line like "div#container>ul>li*5", and get HTML code like this:
<div id="container">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
Just thought I would share a macro I put together that cleans up trailing white space. It will be applied to the current selection if there is one, otherwise it will apply itself to the entire document.
Also, for anyone else trying to modify the current selection, there are a couple of handy methods in this macro. They handle extracting the relevant text and maintaining the current selection, which is the tricky part.
The methods in there are:
// Applies the given callback to the currently selected text
function applyToSelection ( expand, callback )
Hi, I wrote macro for duplicate line with iteration.
I'm trying to open a file with a relative path. But for some reason I keep getting a "no such file or directory error". The text file is going to be in the same directory as my script. So I want the path to be the current directory where the script is executed. My script is currently being run in Windows, but I need the path name to be platform independent to also run in Unix. This is what I've tried so far:
open noAwardEmail.txt r open "c:noAwardEmail.txt" r open c:noAwardEmail.txt r
I've looked through the information in the help documentation on UDLs and the udl language, and poked a bit at koext and luddite. I figured I would start with something really really simple before I jumped into working on a UDL for something more complex, so I thought I would try something fairly simple like some of the basics of Transact-SQL. (And yes, I know that Komodo has SQL already... I just wanted something simple I could start with.)
I am curious about what has been planned for Komodo IDE 6. Would anybody tell us, please?
Is there any way to configure the output window in the bottom pane to display to the right my editor window vs. beneath my editor window? In other words, have my output show up in a side panel-like position?
I'm running Komodo on a new laptop that has a very wide screen, but not much height. I have a ton of room on the right of my display that goes unused but since my display is vertically challenged, I have to constantly re-size my bottom panel to review output or to edit my source.
Thanks!
Malcolm