2 次代碼提交 a8f0018a2f ... c07c85a422

作者 SHA1 備註 提交日期
  NerdRat c07c85a422 Finished basic info commands. 2 年之前
  NerdRat ec26096ff3 Added more keyboard bindings to info cheatsheet. 2 年之前
共有 1 個文件被更改,包括 22 次插入2 次删除
  1. 22 2
      info.md

+ 22 - 2
info.md

@@ -8,12 +8,14 @@ Info files are organized in nodes that describe a topic at a specific level of d
 
 When using info, certain keys and key combinations are commands. These are all the commands and what they do inside an info reader.
 
+## Basic info commands
+
 | Key | Action |
 | --- | ------ |
 |  `h`  | Enter info usage tutorial |
 |  `?`  | Show a summary of all available commands (Emacs info) |
 |  `H`  | Show a summary of all available commands (Stand-alone info) |
-| `<SPC>` | Move foward to the next screenful |
+| `<SPC>` | Move foward to the next screenful, jumps to the next node regardless of level |
 | `<DEL>` | Move backward to the previous screenful (Stand-alone info) |
 | `S-<SPC>` | Move backward to the previous screenful (Graphical Emacs info) |
 | `n` | Move foward to the next node |
@@ -21,4 +23,22 @@ When using info, certain keys and key combinations are commands. These are all t
 | `b` | Move to the beginning of the current node |
 | `<CTRL>-L` | Display node again and cicle through screenful recentering position |
 | `]` | Move to the next node on the next level, when a node has menus |
-| `[` | Move to the previous node on the previous level, when the node has menus |
+| `[` | Move to the previous node on the previous level, when the node has menus |
+| `m` | Go directly to one of the subnodes, it prompts for you to type the subtopic name, usually shown in a menu |
+| `u` | Go 'Up' to the node you just came from (one node up in the tree), leading you back to the menu |
+| `<CTRL>-G` | Cancel the current operation, available when the prompt is expecting some input |
+| `<TAB>` | Move to menu subtopic lines and move to the next menu item on each <TAB> press |
+| `M-<TAB>` | Move backwards between menu subtopic items (<Shift>-<TAB> on Emacs info) |
+| `<RET>` | Go to the currently selected subtopic menu item, descending one node in the tree. Also you can follow a selected cross reference |
+| `l` | Move back in history to the last node you were at |
+| `f` | Follow a cross reference by specifying the name, this will also suggest the nearest cross reference |
+| `f?` | List all the cross references in the current node |
+| `i` | Search the index for a given topic and takes you to the node which is listed in the indes for that topic |
+| `r` | Revisit nodes in the history list in foward direction, so 'r' returns you to the node you came from |
+| `L` | Creates a virtual node that contains a list of all the nodes you visited, you can select a node from this menu to visit it |
+| `d` | Opens the directory node. This node is the first you see when you enter info |
+| `t` | Moves to the 'Top' node of the current manual manual, usually where the intro is |
+| `q` | This takes you out of info, no matter in which node you are |
+
+
+## Advanced Info Commands