Skip to content

Instantly share code, notes, and snippets.

@ToJans
Created January 27, 2012 12:34
Show Gist options
  • Save ToJans/1688574 to your computer and use it in GitHub Desktop.
Save ToJans/1688574 to your computer and use it in GitHub Desktop.
ClientSidePlugins for jabbr
interceptor.plugins.push({
description: "Typing ZOMG will be expanded to the full expression",
filter: /\b(zomg)\b/gi,
func: function (input, match) {
return input.replace(/\bzomg\b/i, 'Zombies Ohh My Gawd !!!');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment