6

I use snippets all the time. For example I defined some abbreviation snippets (two letters only) for long terms that I use often.

I tried to use the snippets when typing the title/subject and in tags, but it doesn't work.

Can snippets (or at least the single-line ones) be made to work "everywhere" please?

flag

2 Answers

0

I've tagged this as a feature request. When it gets enough votes, it'll get a case filed.

link|flag
0

I made snippets work in most places (i.e. on the case page) using this BugMonkey customization:

name:          Snippets almost everywhere
description:   Makes snippets work in most input fields
author:        Michel de Ruiter
version:       0.1.0.0

js:

$(document).on('keypress',
               'input:not(.droplist-text),textarea:not(#sEventEdit)',
               function(event) {
  if (!fb.snippet) return; // Currently only available on the case page:
  fb.snippet.handleSnippetTargetKeypress(this, event);
  $('#editSnippetHelper').css('width', ''); // Don't restrict helper width
});
link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.