Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
019a63782a | ||
|
|
555299bcd1 | ||
|
|
455e7ddbc1 | ||
|
|
790282289e |
55
programs/develop/cedit/SHORTCUTS_EN.TXT
Normal file
55
programs/develop/cedit/SHORTCUTS_EN.TXT
Normal file
@@ -0,0 +1,55 @@
|
||||
Keyboard Shortcuts:
|
||||
|
||||
ctrl+A Select all
|
||||
ctrl+C Copy
|
||||
ctrl+V Paste
|
||||
ctrl+X Cut
|
||||
ctrl+L Convert to lowercase
|
||||
ctrl+U Convert to uppercase
|
||||
ctrl+F,
|
||||
ctrl+H Show search/replace panel
|
||||
Esc Close search panel; Close menu
|
||||
shift+Esc Hide (Minimize) search panel
|
||||
F10 Open main menu
|
||||
shift+F10 Open context menu
|
||||
F3 Find next
|
||||
shift+F3 Find previous
|
||||
ctrl+Z Undo
|
||||
ctrl+Y Redo
|
||||
ctrl+G Go to line...
|
||||
ctrl+Del Delete line
|
||||
ctrl+D Duplicate line
|
||||
ctrl+Up Move text up
|
||||
ctrl+Down Move text down
|
||||
ctrl+E Select word
|
||||
|
||||
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
|
||||
shift+F2 Go to previous bookmark
|
||||
|
||||
ctrl+S Save
|
||||
ctrl+O Open
|
||||
ctrl+N,
|
||||
ctrl+T Create new
|
||||
ctrl+W Close File
|
||||
ctrl+Tab Switch to Next Tab
|
||||
|
||||
ctrl+F9 Compile
|
||||
F9 Run
|
||||
ctrl+F8 Debug
|
||||
|
||||
shift+wheel Horizontal scrolling
|
||||
|
||||
Navigating text:
|
||||
(ctrl+)Home, (ctrl+)End, (ctrl+)PageUp, (ctrl+)PageDown
|
||||
ctrl+Left, ctrl+Right
|
||||
|
||||
Navigating in search panel:
|
||||
Tab Move to next input field
|
||||
shift+Tab Move to previous input field
|
||||
Enter Find next occurrence
|
||||
@@ -23,9 +23,10 @@
|
||||
ctrl+Down переместить текст вниз
|
||||
ctrl+E выделить слово
|
||||
|
||||
Tab увеличить отступ для выделенного текста
|
||||
Tab увеличить отступ для текста
|
||||
shift+
|
||||
Backspace уменьшить отступ для выделенного текста
|
||||
shift+Tab уменьшить отступ для текста
|
||||
|
||||
ctrl+F2 установить/снять метку
|
||||
F2 перейти к метке ниже
|
||||
@@ -52,4 +53,3 @@
|
||||
Tab к следующему полю ввода
|
||||
Shift-Tab к предыдущему полю ввода
|
||||
Enter поиск следующего вхождения
|
||||
|
||||
@@ -28,7 +28,7 @@ IMPORT
|
||||
RW, Ini, EB := EditBox, Tabs, Toolbar, SB := StatusBar;
|
||||
|
||||
CONST
|
||||
HEADER = "CEdit (11-jan-2026)";
|
||||
HEADER = "CEdit (25-jan-2026)";
|
||||
|
||||
ShellFilter = "";
|
||||
EditFilter = "sh|inc|txt|asm|ob07|c|cpp|h|pas|pp|lua|ini|json";
|
||||
@@ -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;
|
||||
|
||||
@@ -1686,6 +1686,8 @@ BEGIN
|
||||
ELSE
|
||||
IF keyCode = -1 THEN
|
||||
key := -1
|
||||
ELSIF (keyCode = 15) & shift THEN (* Shift-Tab *)
|
||||
T.Indent(text, FALSE)
|
||||
ELSIF keyCode = 61 THEN (* F3 *)
|
||||
key := -1;
|
||||
IF search & (searchText # "") THEN
|
||||
|
||||
Reference in New Issue
Block a user