This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// not sure about the origin, probably https://gist.github.com/adehaas/3693846 Customized version for my liking. | |
komodo.assertMacroVersion(3); | |
if (komodo.view.scintilla) | |
{ | |
komodo.view.scintilla.focus(); | |
} // bug 67103 | |
var koDoc = (komodo.koDoc === undefined ? komodo.document : komodo.koDoc); | |
var formatter; | |
var language = koDoc.language; |