diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/03_UserInterface.md | 6 | ||||
-rw-r--r-- | doc/04_WorkingWithFiles.md | 22 | ||||
-rw-r--r-- | doc/06_AdeptEditing.md | 12 | ||||
-rw-r--r-- | doc/index.html | 4 |
4 files changed, 23 insertions, 21 deletions
diff --git a/doc/03_UserInterface.md b/doc/03_UserInterface.md index 6f232d37..19e28534 100644 --- a/doc/03_UserInterface.md +++ b/doc/03_UserInterface.md @@ -30,9 +30,9 @@ Textadept's [buffer browser][] is always available and far more powerful. ## Editor View -Most of your time spent with Textadept is in the editor view. The GUI version -features unlimited view splitting both vertically and horizontally. Lua also has -complete control over all views. +Most of your time spent with Textadept is in the editor view. Both the GUI +version and the terminal version feature unlimited vertical and horizontal view +splitting. Lua also has complete control over all views. ## Find & Replace Pane diff --git a/doc/04_WorkingWithFiles.md b/doc/04_WorkingWithFiles.md index 6f61d1da..9ea15e84 100644 --- a/doc/04_WorkingWithFiles.md +++ b/doc/04_WorkingWithFiles.md @@ -108,20 +108,22 @@ in [scripts][]. Textadept allows you to split the editor window an unlimited number of times both horizontally and vertically. `Ctrl+Alt+S` or `Ctrl+Alt+H` splits horizontally into top and bottom views and `Ctrl+Alt+V` splits vertically (`^S` -and `^V` respectively on Mac OSX | N/A in curses) into side-by-side views. -Clicking and dragging on the splitter bar with the mouse or pressing -`Ctrl+Alt++` and `Ctrl+Alt+-` (`^+` and `^-` | N/A) resizes the split. Textadept -supports viewing a single buffer in two or more views. +and `^V`, respectively on Mac OSX | `M-^V S` and `M-^V V` in curses) into +side-by-side views. Clicking and dragging on the splitter bar with the mouse or +pressing `Ctrl+Alt++` and `Ctrl+Alt+-` (`^+` and `^-` | `M-^V +` and `M-^V -`) +resizes the split. Textadept supports viewing a single buffer in two or more +views. -Pressing `Ctrl+Alt+N` (`^⌥⇥` on Mac OSX | N/A in curses) jumps to the next view -and `Ctrl+Alt+P` (`^⌥⇧⇥` | N/A) jumps the previous one. However, depending on -the split sequence, the order when cycling between views may not be linear. +Pressing `Ctrl+Alt+N` (`^⌥⇥` on Mac OSX | `M-^V N` in curses) jumps to the next +view and `Ctrl+Alt+P` (`^⌥⇧⇥` | `M-^V P`) jumps the previous one. However, +depending on the split sequence, the order when cycling between views may not be +linear. To unsplit a view, enter the view to keep open and press `Ctrl+Alt+W` (`^W` on -Mac OSX | N/A in curses). To unsplit all views, use `Ctrl+Alt+Shift+W` (`^⇧W` | -N/A). +Mac OSX | `M-^V W` in curses). To unsplit all views, use `Ctrl+Alt+Shift+W` +(`^⇧W` | `M-^V S-W`). -Textadept curses does not support split views. +Note: Textadept curses uses the `M-^V` key prefix for split views. ### Settings diff --git a/doc/06_AdeptEditing.md b/doc/06_AdeptEditing.md index d4857e2f..b5e66b88 100644 --- a/doc/06_AdeptEditing.md +++ b/doc/06_AdeptEditing.md @@ -127,7 +127,7 @@ XML tags. Pressing `Ctrl+Alt+U` or `Ctrl+Alt+Shift+U` (`^U` or `^⇧U` on Mac OSX | `M-^U` or `M-^L` in curses) converts selected text to upper case letters or lower case -letters respectively. +letters, respectively. #### Change Indent Level @@ -156,11 +156,11 @@ from a Lua pattern search, but always allows embedded Lua code enclosed in `%()`. Note the `Ctrl+G`, `Ctrl+Shift+G`, `Ctrl+Alt+R`, `Ctrl+Alt+Shift+R` key bindings -for find next, find previous, replace, and replace all (`⌘G`, `⌘⇧G`, `^R`, `^⇧R` -respectively on Mac OSX | `M-G`, `M-S-G`, `M-R`, `M-S-R` in curses) only work -after hiding the Find & Replace pane. For at least the English locale in the GUI -version, use the button mnemonics: `Alt+N`, `Alt+P`, `Alt+R`, and `Alt+A` (`⌘N`, -`⌘P`, `⌘R`, `⌘A` | N/A) after bringing up the pane. +for find next, find previous, replace, and replace all (`⌘G`, `⌘⇧G`, `^R`, and +`^⇧R`, respectively on Mac OSX | `M-G`, `M-S-G`, `M-R`, `M-S-R` in curses) only +work after hiding the Find & Replace pane. For at least the English locale in +the GUI version, use the button mnemonics: `Alt+N`, `Alt+P`, `Alt+R`, and +`Alt+A` (`⌘N`, `⌘P`, `⌘R`, `⌘A` | N/A) after bringing up the pane. In the curses version, `Tab` and `S-Tab` toggles between the find next, find previous, replace, and replace all buttons; `Up` and `Down` arrows switch diff --git a/doc/index.html b/doc/index.html index 18064afc..56b56c52 100644 --- a/doc/index.html +++ b/doc/index.html @@ -137,8 +137,8 @@ <div class="left-col"> <h3>Unlimited Split Views</h3> <p> - The graphical version of Textadept supports unlimited view splitting - both vertically and horizontally. + Both the graphical version and the terminal version of Textadept + support unlimited vertical and horizontal view splitting. </p> <p class="center"> <img src="images/splitviews.png" alt="Split Views" /> |