Skip to content

Commit 93b9f65

Browse files
author
Julian Buliga
committed
update to latest API
1 parent 73b09ed commit 93b9f65

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

recipes/JavaScript/577013_Komodo_JS_Macro__show_svn_blame_current_editor/recipe-577013.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ var retval = process.wait(-1);
1414
if (retval == 0) {
1515
var stdout = process.getStdout();
1616
var lines = stdout.split("\n");
17-
StatusBar_AddMessage("BLAME: " + lines[linenum], "editor", 10000, true);
17+
ko.statusBar.AddMessage("BLAME: " + lines[linenum], "editor", 10000, true);
1818
}

recipes/JavaScript/578537_Komodo_JS_Macro__show_git_blame_current_editor/recipe-578537.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ if (retval == 0) {
1818
var re = new RegExp("[0-9a-f]* \\((.*? [12][09][0-9]{2}-[0-9]{2}-[0-9]{2}) ");
1919
var match = re.exec(lines[linenum]);
2020
if (match) {
21-
StatusBar_AddMessage("BLAME: " + match[1], "editor", 10000, true);
21+
ko.statusBar.AddMessage("BLAME: " + match[1], "editor", 10000, true);
2222
}
2323
}

0 commit comments

Comments
 (0)