Skip to content

Instantly share code, notes, and snippets.

@mikewilcox
Created January 31, 2013 23:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikewilcox/4687808 to your computer and use it in GitHub Desktop.
Save mikewilcox/4687808 to your computer and use it in GitHub Desktop.
Convert double quotes to single quotes
komodo.assertMacroVersion(3);
if (komodo.view) { komodo.view.setFocus(); }
ko.views.manager.currentView.scimoz.beginUndoAction();
var str = ko.views.manager.currentView.scimoz.selText;
str = str.replace(/\"/g, "'");
komodo.view.selection = str;
ko.views.manager.currentView.scimoz.endUndoAction();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment