diff options
author | 2012-08-05 09:29:17 -0400 | |
---|---|---|
committer | 2012-08-05 09:29:17 -0400 | |
commit | 6b3b54d8fac94251f6bf53cbdfaca84c16a05a0f (patch) | |
tree | ffd21e9d9dc372fcd593e3c26e4f93f42c43560f /doc/04_WorkingWithFiles.md | |
parent | e84d0b3660cad721400f68f485208f26d6bcb1d5 (diff) | |
download | textadept-6b3b54d8fac94251f6bf53cbdfaca84c16a05a0f.tar.gz textadept-6b3b54d8fac94251f6bf53cbdfaca84c16a05a0f.zip |
Added ncurses key commands to individual manual pages.
Diffstat (limited to 'doc/04_WorkingWithFiles.md')
-rw-r--r-- | doc/04_WorkingWithFiles.md | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/doc/04_WorkingWithFiles.md b/doc/04_WorkingWithFiles.md index e5c30d8e..4508e4a1 100644 --- a/doc/04_WorkingWithFiles.md +++ b/doc/04_WorkingWithFiles.md @@ -10,19 +10,19 @@ question of where to place the bar (above, below, or to one side) and how many to have (one for each split view or a single one under the menubar). You can see which buffer is active by looking at Textadept's titlebar. Pressing -`Ctrl+Tab` (`^⇥` on Mac OSX) cycles to the next buffer and `Ctrl+Shift+Tab` -(`^⇧⇥`) cycles to the previous one. +`Ctrl+Tab` (`^⇥` on Mac OSX | `M-N` in ncurses) cycles to the next buffer and +`Ctrl+Shift+Tab` (`^⇧⇥` | `M-P`) cycles to the previous one. ## Buffer Browser -To move quickly between buffers, press `Ctrl+B` (`⌘B` on Mac OSX) to open the -buffer browser. +To move quickly between buffers, press `Ctrl+B` (`⌘B` on Mac OSX | `M-B` or +`M-S-B` in ncurses) to open the buffer browser.  The buffer browser shows you a list of currently open buffers, the most recent towards the bottom. Typing part of any filename filters the list. Spaces are -wildcards. You can also just use the arrow keys. Pressing `Enter` or clicking +wildcards. You can also just use the arrow keys. Pressing `Enter` or selecting `OK` switches to the selected buffer.  @@ -32,15 +32,18 @@ wildcards. You can also just use the arrow keys. Pressing `Enter` or clicking Textadept allows you to split the editor window as many times as you like either horizontally or vertically. `Ctrl+Alt+S` or `Ctrl+Alt+H` splits horizontally (top-bottom) and `Ctrl+Alt+V` splits vertically (`^S` and `^V` respectively on -Mac OSX). You can resize the splitter bar by clicking and dragging with the -mouse or using `Ctrl+Alt++` and `Ctrl+Alt+-` (`^+` and `^-`). The same file can -be worked with in multiple split views. +Mac OSX | N/A in ncurses). You can resize the splitter bar by clicking and +dragging with the mouse or using `Ctrl+Alt++` and `Ctrl+Alt+-` (`^+` and `^-` | +N/A). The same file can be worked with in multiple split views. -Pressing `Ctrl+Alt+N` (`^⌥⇥` on Mac OSX) goes to the next view and `Ctrl+Alt+P` -(`^⌥⇧⇥`) goes to the previous one. +Pressing `Ctrl+Alt+N` (`^⌥⇥` on Mac OSX | N/A in ncurses) goes to the next view +and `Ctrl+Alt+P` (`^⌥⇧⇥` | N/A) goes to the previous one. To unsplit a view, enter the view to keep open and press `Ctrl+Alt+W` (`^W` on -Mac OSX). To unsplit all views, use `Ctrl+Alt+Shift+W` (`^⇧W`). +Mac OSX | N/A in ncurses). To unsplit all views, use `Ctrl+Alt+Shift+W` (`^⇧W` | +N/A). + +Split views are unavailable in ncurses. ## Sessions @@ -60,9 +63,9 @@ A quicker, though slightly more limited alternative to the standard `File -> Open` dialog is snapopen. It behaves like the buffer browser, but displays a list of files to open, including files in subdirectories. You can snapopen the current file's directory with `Ctrl+Alt+Shift+O` (`^⌘⇧O` on Mac -OSX) or from the `Tools -> Snapopen -> Current Directory` menu. Snapopen is -pretty limited from the menu, but more versatile in scripts. See its [LuaDoc][]. -`Ctrl+U` (`⌘U`) snaps open `~/.textadept/`. +OSX | `M-S-O` in ncurses) or from the `Tools -> Snapopen -> Current Directory` +menu. Snapopen is pretty limited from the menu, but more versatile in scripts. +See its [LuaDoc][]. `Ctrl+U` (`⌘U` | `^U`) snaps open `~/.textadept/`. [LuaDoc]: api/_M.textadept.snapopen.html |