Skip to content

Commit

Permalink
Add ru keyboard remapping on small_yu on closet bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
maxdzyubak committed Jul 22, 2023
1 parent db0fe98 commit a00b4c4
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<link rel="stylesheet" href="../../vendor/css/bootstrap.min.css" />

<h4>Russian Keyboard Remapping: Маленькая ю на твёрдый знак (ъ). Твёрдый знак на shift + ю (в классическом исполнении на твёрдый знак)</h4>

<p>На русской раскладке маленькая <b>ю</b> по нажатию на <b>ъ</b></p>
<p>На русской раскладке маленький <b>ъ</b> по нажатию на <b>shift + ъ</b></p>
4 changes: 4 additions & 0 deletions public/groups.json
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,10 @@
{
"path": "json/ru_keyboard_remapping_small_yu_on_shift_yu.json",
"extra_description_path": "extra_descriptions/ru_keyboard_remapping_small_yu_on_shift_yu.json.html"
},
{
"path": "ru_keyboard_remapping_small_yu_on_closet_bracket.json",
"extra_description_path": "ru_keyboard_remapping_small_yu_on_closet_bracket.json.html"
}
]
},
Expand Down
60 changes: 60 additions & 0 deletions public/json/ru_keyboard_remapping_small_yu_on_closet_bracket.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"title": "Russian Keyboard Remapping: Маленькая ю на твёрдый знак (ъ). Твёрдый знак на shift + ю (в классическом исполнении на твёрдый знак)",
"maintainers": [
"maxdzyubak"
],
"rules": [
{
"description": "Russian Keyboard Remapping: Маленькая ю на твёрдый знак (ъ). Твёрдый знак на shift + ю (в классическом исполнении на твёрдый знак)",
"manipulators": [
{
"conditions": [
{
"input_sources": [
{
"language": "ru"
}
],
"type": "input_source_if"
}
],
"from": {
"key_code": "close_bracket",
"modifiers": {
"mandatory": [
"shift"
]
}
},
"to": [
{
"key_code": "close_bracket"
}
],
"type": "basic"
},
{
"conditions": [
{
"input_sources": [
{
"language": "ru"
}
],
"type": "input_source_if"
}
],
"from": {
"key_code": "close_bracket"
},
"to": [
{
"key_code": "period"
}
],
"type": "basic"
}
]
}
]
}

0 comments on commit a00b4c4

Please sign in to comment.