Skip to content

Commit

Permalink
Add ru keyboard remapping small b
Browse files Browse the repository at this point in the history
  • Loading branch information
maxdzyubak committed Jul 22, 2023
1 parent a00b4c4 commit a3505d9
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 @@ -193,6 +193,10 @@
{
"path": "ru_keyboard_remapping_small_yu_on_closet_bracket.json",
"extra_description_path": "ru_keyboard_remapping_small_yu_on_closet_bracket.json.html"
},
{
"path": "ru_keyboard_remapping_small_b.json",
"extra_description_path": "ru_keyboard_remapping_small_b.json.html"
}
]
},
Expand Down
60 changes: 60 additions & 0 deletions public/json/ru_keyboard_remapping_small_b.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": "m"
},
"to": [
{
"key_code": "comma"
}
],
"type": "basic"
},
{
"conditions": [
{
"input_sources": [
{
"language": "ru"
}
],
"type": "input_source_if"
}
],
"from": {
"key_code": "m",
"modifiers": {
"mandatory": [
"shift"
]
}
},
"to": [
{
"key_code": "m"
}
],
"type": "basic"
}
]
}
]
}

0 comments on commit a3505d9

Please sign in to comment.