cedit: Fix shortcut description
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 1m17s
Build system / Build (pull_request) Successful in 10m30s

This commit is contained in:
2026-03-08 10:24:56 +05:00
parent 555299bcd1
commit 019a63782a
3 changed files with 11 additions and 9 deletions

View File

@@ -23,9 +23,10 @@ Keyboard Shortcuts:
ctrl+Down Move text down
ctrl+E Select word
Tab Increase indent for selected text
shift+Backspace,
shift+Tab Decrease indent for selected text
Tab Increase indent for text
shift+
Backspace Decrease indent for selected text
shift+Tab Decrease indent for text
ctrl+F2 Set/Remove bookmark
F2 Go to next bookmark
@@ -51,4 +52,4 @@ Keyboard Shortcuts:
Navigating in search panel:
Tab Move to next input field
shift+Tab Move to previous input field
Enter Find next occurrence
Enter Find next occurrence

View File

@@ -23,9 +23,10 @@
ctrl+Down переместить текст вниз
ctrl+E выделить слово
Tab увеличить отступ для выделенного текста
shift+Backspace,
shift+Tab уменьшить отступ для выделенного текста
Tab увеличить отступ для текста
shift+
Backspace уменьшить отступ для выделенного текста
shift+Tab уменьшить отступ для текста
ctrl+F2 установить/снять метку
F2 перейти к метке ниже
@@ -51,4 +52,4 @@
перемещение в панели поиска:
Tab к следующему полю ввода
Shift-Tab к предыдущему полю ввода
Enter поиск следующего вхождения
Enter поиск следующего вхождения

View File

@@ -1575,7 +1575,7 @@ VAR
BEGIN
menu := List.create(NIL);
Menu.AddMenuItem(menu, menuIncInd, "increase Tab");
Menu.AddMenuItem(menu, menuDecInd, "decrease shift-Bksp");
Menu.AddMenuItem(menu, menuDecInd, "decrease shift-Tab");
RETURN Menu.create(menu, mainTID)
END CreateMenuIndent;