Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions rules/jab/jab-tilde.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
( function ( $ ) {
'use strict';

var jabTilde = {
id: 'jab-tilde',
name: 'Hyam tilde',
description: 'Hyam input keyboard',
date: '2025-10-22',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Toluwanimi Ayodele',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~A', 'A\u0331' ],
[ '~a', 'a\u0331' ],
[ '~E', 'E\u0331' ],
[ '~e', 'e\u0331' ],
[ '~I', 'I\u0331' ],
[ '~i', 'i\u0331' ],
[ '~_', '\u0331' ]
]
};

$.ime.register( jabTilde );
}( jQuery ) );
8 changes: 8 additions & 0 deletions src/jquery.ime.inputmethods.js
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,10 @@
name: 'Esan Awain tilde',
source: 'rules/ish/ish-tilde.js'
},
'jab-tilde': {
name: 'Hyam tilde',
source: 'rules/jab/jab-tilde.js'
},
'jac-tilde': {
name: 'Jakaltek tilde',
source: 'rules/jac/jac-tilde.js'
Expand Down Expand Up @@ -1462,6 +1466,10 @@
autonym: 'awain',
inputmethods: [ 'ish-tilde' ]
},
jab: {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please keep them alphabetical.

autonym: 'Hyam',
inputmethods: [ 'jab-tilde' ]
},
jac: {
autonym: 'Abꞌxubꞌal Poptiꞌ',
inputmethods: [ 'jac-tilde' ]
Expand Down
7 changes: 7 additions & 0 deletions test/jquery.ime.test.fixtures.js
Original file line number Diff line number Diff line change
Expand Up @@ -3169,6 +3169,13 @@ var palochkaVariants = {
{ input: '~o', output: 'ọ', description: 'Esan Awain tilde ~o -> ọ' }
]
},
{
description: 'Hyam tilde test',
inputmethod: 'jab-tilde',
tests: [
{ input: "~A~a~E~e~I~i", output: 'A̱a̱E̱e̱I̱i̱', description: 'Hyam tilde A̱a̱E̱e̱I̱i̱' }
]
},
{
description: 'Jakaltek tilde test',
inputmethod: 'jac-tilde',
Expand Down