Options

layoutCandidatesCaseSensitiveMatch

Determines whether layout candidate match should be case sensitive. When set to true, candidate matching will be case-sensitive, otherwise it will be case-insensitive.

let keyboard = new SimpleKeyboard({
  enableLayoutCandidates: true,
  layoutCandidates: {
    "a": "á à â ä ã"
  },
  layoutCandidatesCaseSensitiveMatch: true
});

// With case-sensitive matching enabled:
// Typing 'A' will not show candidates for 'a'
// Only exact case matches will trigger candidates
Language: javascript | Theme: light | Line Numbers: false