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+Down Move text down
ctrl+E Select word ctrl+E Select word
Tab Increase indent for selected text Tab Increase indent for text
shift+Backspace, shift+
shift+Tab Decrease indent for selected text Backspace Decrease indent for selected text
shift+Tab Decrease indent for text
ctrl+F2 Set/Remove bookmark ctrl+F2 Set/Remove bookmark
F2 Go to next bookmark F2 Go to next bookmark

View File

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

View File

@@ -1575,7 +1575,7 @@ VAR
BEGIN BEGIN
menu := List.create(NIL); menu := List.create(NIL);
Menu.AddMenuItem(menu, menuIncInd, "increase Tab"); 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) RETURN Menu.create(menu, mainTID)
END CreateMenuIndent; END CreateMenuIndent;