Skip to content

Instantly share code, notes, and snippets.

View BrandonXLF's full-sized avatar
🔛

Brandon Fowler BrandonXLF

🔛
View GitHub Profile
@BrandonXLF
BrandonXLF / editor.js
Created October 11, 2022 22:37
Set Ace Editor max token count.
let editor = ace.edit(document.getElementById('editor'));
// ...
editor.session.$mode.getTokenizer().$setMaxTokenCount(/* NEW MAX TOKEN COUNT */ 10000);