Skip to content

Instantly share code, notes, and snippets.

@datamafia
Forked from renier/replTabsWithSpaces.js
Last active August 29, 2015 14:14
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 datamafia/29ad101754b6014524be to your computer and use it in GitHub Desktop.
Save datamafia/29ad101754b6014524be to your computer and use it in GitHub Desktop.
var scimoz = ko.views.manager.currentView.scimoz,
savedPos = scimoz.currentPos,
savedLinePos = scimoz.firstVisibleLine;
try {
scimoz.text = scimoz.text.replace(/\t/gm, " ");
scimoz.gotoPos(savedPos);
scimoz.lineScroll(0, savedLinePos-scimoz.firstVisibleLine);
} catch(e) {
return true;
}
return false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment