This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Функция для правильного склонения существительного с числительным | |
| * | |
| * @param ed неизменяемая часть слова, которую нужно просклонять | |
| * @param a окончание для слова, в случае если число оканчивается на 1 | |
| * @param b окончание для слова, в случае если число оканчивается на 2, 3 или 4 | |
| * @param c окончание для слова, в случае если число оканчивается на 0, 5...9 и 11...19 | |
| * @param n число, по которому идёт склонение | |
| * @return правильно просклонённое слово по числу | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " taken from https://danidiaz.medium.com/configuring-ideavimrc-de16a4da0715 | |
| set relativenumber | |
| set number | |
| " https://superuser.com/questions/622898/how-to-turn-off-the-bell-sound-in-intellij | |
| " https://stackoverflow.com/questions/63386803/how-to-turn-off-a-bell-in-intellij-idea | |
| set visualbell | |
| " https://github.com/JetBrains/ideavim/blob/master/doc/emulated-plugins.md |