Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. //snippet manager is included for managing snippets
  2. var snippetManager = ace.acequire('ace/snippets').snippetManager;
  3. // getting existing snippet array (free from special characters, n etc)
  4. var m = snippetManager.files[this.editor._editor.session.$mode.$id];
  5. m.snippetText = this.snippettext;
  6. // unregister already esisting snippets
  7. snippetManager.unregister(m.snippets);
  8. m.snippets = snippetManager.parseSnippetFile(m.snippetText, m.scope);
  9. // register newly added snippets along with old snippets
  10. snippetManager.register(m.snippets,'tex');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement