Skip to content

Update 08.appendices.md #59

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions doc/08.appendices.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,13 @@ increasing difficulty.
languages to the `HLDB` array.
* **Line numbers**: Display the line number to the left of each line of the
file.
* **Command line arguments**: For example, many editors take "+123" as a command line
argument that says goto this line when you open the editor.
* **Improved search**: Implement case-insensitive search. Implement search
and replace.
* **Hippie completion**: hit a special key that tries to complete the word at the cursor.
This searches the document for matching words that have the same prefix and offers
a completion based on that.
* **Soft indent**: If you like using spaces instead of tabs, make the
<kbd>Tab</kbd> key insert spaces instead of `\t`. You may want
<kbd>Backspace</kbd> to remove a <kbd>Tab</kbd> key's worth of spaces as
Expand Down Expand Up @@ -120,6 +127,8 @@ increasing difficulty.
(<kbd>h</kbd><kbd>j</kbd><kbd>k</kbd><kbd>l</kbd>).
* **Multiple buffers**: Allow having multiple files open at once, and have some
way of switching between them.
* **Modal Dialog**: draw a modal dialog box. You can use this for help. Or you
could use it for buffer or file selection.

## More tutorials like this

Expand Down