Skip to content

Instantly share code, notes, and snippets.

@bozhink
Last active February 16, 2017 21:09
Show Gist options
  • Save bozhink/2641bbaff4e6b8972f86f88b208bbe32 to your computer and use it in GitHub Desktop.
Save bozhink/2641bbaff4e6b8972f86f88b208bbe32 to your computer and use it in GitHub Desktop.
UltraEdit macro for writing numbers in editor
function recall(num) {
UltraEdit.activeDocument.write(num + " ");
}
function num() {
var i = 0, j = 1, n = 0;
while (n < 10) {
recall(i);
var t = i;
i = j;
j += t;
n++;
}
}
num();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment