2 次代碼提交 c07c85a422 ... 991f76358d

作者 SHA1 備註 提交日期
  NerdRat 991f76358d Finished advanced info commands from Info cheatsheet. 2 年之前
  NerdRat 8922d88ebe Started advanced info commands section. 2 年之前
共有 1 個文件被更改,包括 18 次插入1 次删除
  1. 18 1
      info.md

+ 18 - 1
info.md

@@ -41,4 +41,21 @@ When using info, certain keys and key combinations are commands. These are all t
 | `q` | This takes you out of info, no matter in which node you are |
 
 
-## Advanced Info Commands
+## Advanced Info Commands
+
+These commands are focused mostly on searching and finding something quickly, using the manual as a reference rather than as a tutorial. This includes searching text in a manual, searching the index of a manual, chosing a menu subtopic by its number, create an info buffer in emacs and the emacs info variables to modify the behavior of Emacs Info.
+
+| Key | Action |
+| --- | ------ |
+| `<CTRL>-q` | Quotes the next character so it is entered literally, this is usually done when you are searching |
+| `s` | Allows you to search a whole Info file for a string, this switches to the node if necessary. Type 's' and '<RET>' again to search the same string again |
+| `<CTRL>-s` | Start incremental search foward (Emacs and Standalone Info), and type '<RET>' to stop. Type the same sequence to repeat the search |
+| `<CTRL>-r` | Start incremental search backwards, same sequence as foward to stop and repeat the search through multiple info nodes |
+| `I` | Search the index for a string and construct a virtual info node with the results of the index search making easier to select |
+| `g` | Go to a node by its name. For example 'gTop<RET>' will take you to the Top node in this file. You can also specify the node and the file: 'g(emacs)Top<RET>' will take you to the Top node in the emacs file |
+| `0..9` | Choose a menu subtopic by its number, 0 goes to through the last menu item. Menu items with colored * are odd entries |
+| `M-n` | When using emacs, select a new independent Info buffer in a new window |
+| `C-u m` | When using emacs, creates a new independent Info buffer visiting the subnode in the menu, prompts you typ type the subtopic |
+| `C-u g` | When using emacs, creates a new independent Info buffer visiting the subnode by its name, prompts you to type the name |
+| `C-u <number> C-h i` | Switch to the info buffer with the given <number>, creating it if does not exist |
+| `M-x info-display-manual` | Show an Info manual by name |