diff options
author | 2013-04-03 16:56:14 -0400 | |
---|---|---|
committer | 2013-04-03 16:56:14 -0400 | |
commit | 679e188ec027978b37eb36a5f2d52bc2cf04ef77 (patch) | |
tree | 61da33e31c8f6f02fcc5fd53e406368635d5df43 /doc/05_FileNavigation.md | |
parent | 00153ab1c0f7307a8589c7d0cc0a3908cb7f0c34 (diff) | |
download | textadept-679e188ec027978b37eb36a5f2d52bc2cf04ef77.tar.gz textadept-679e188ec027978b37eb36a5f2d52bc2cf04ef77.zip |
Textadept should support multiple curses platforms; remove ncurses references.
Requires Scintilla r4436 and Scinterm r45.
Diffstat (limited to 'doc/05_FileNavigation.md')
-rw-r--r-- | doc/05_FileNavigation.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/05_FileNavigation.md b/doc/05_FileNavigation.md index 4e21f8fb..4c543e87 100644 --- a/doc/05_FileNavigation.md +++ b/doc/05_FileNavigation.md @@ -5,8 +5,8 @@ Textadept supports the key bindings you are accustomed to for navigating text fields on your platform. The arrow keys move the caret in a particular direction, `Ctrl+Left` and `Ctrl+Right` (`^⇠` and `^⇢` on Mac OSX | `^Left` and -`^Right` in ncurses) move by words, `PgUp` and `PgDn` (`⇞` and `⇟` | `PgUp` and -`PgDn`) move by pages, etc. Mac OSX and ncurses also support some Bash-style +`^Right` in curses) move by words, `PgUp` and `PgDn` (`⇞` and `⇟` | `PgUp` and +`PgDn`) move by pages, etc. Mac OSX and curses also support some Bash-style bindings like `^B`, `^F`, `^P`, `^N`, `^A`, and `^E`. A complete list of movement bindings is found in the "Movement" section of the [key bindings list][]. @@ -17,14 +17,14 @@ movement bindings is found in the "Movement" section of the By default, Textadept will highlight the matching brace characters under the caret : '(', ')', '[', ']', '{', and '}'. Pressing `Ctrl+M` (`^M` on Mac OSX | -`M-M` in ncurses) moves the caret to that matching brace. +`M-M` in curses) moves the caret to that matching brace.  ## Bookmarks You can place bookmarks on lines in buffers to jump back to them later. -`Ctrl+F2` (`⌘F2` on Mac OSX | `F1` in ncurses) toggles a bookmark on the current +`Ctrl+F2` (`⌘F2` on Mac OSX | `F1` in curses) toggles a bookmark on the current line, `F2` jumps to the next bookmarked line, `Shift+F2` (`⇧F2` | `F3`) jumps to the previously bookmarked line, `Alt+F2` (`⌥F2` | `F4`) jumps to the bookmark selected from a list, and `Ctrl+Shift+F2` (`⌘⇧F2` | `F6`) clears all bookmarks @@ -33,5 +33,5 @@ in the current buffer. ## Goto Line To jump to a specific line in a file, press `Ctrl+J` (`⌘J` on Mac OSX | `^J` in -ncurses) and specify the line number in the prompt and press `Enter` (`↩` | +curses) and specify the line number in the prompt and press `Enter` (`↩` | `Enter`) or select `OK`. |