Updated rustyline to 6.0.0. Added completion_mode config (#1289)

* Updated rustyline to 6.0.0. Added completion_mode config

* Formatted completion_mode config
This commit is contained in:
Jacob Gonzalez
2020-01-27 14:41:17 +11:00
committed by Jonathan Turner
parent af51a0e6f0
commit f8be1becf2
6 changed files with 36 additions and 19 deletions

View File

@ -29,13 +29,14 @@ Syntax: `config {flags}`
### Variables
| Variable | Type | Description |
| ---------- | ---------------- | ------------------------------------------------------- |
| path | table of strings | PATH to use to find binaries |
| env | row | the environment variables to pass to external commands |
| ctrlc_exit | boolean | whether or not to exit Nu after multiple ctrl-c presses |
| table_mode | "light" or other | enable lightweight or normal tables |
| edit_mode | "vi" or "emacs" | changes line editing to "vi" or "emacs" mode |
| Variable | Type | Description |
| --------------- | -------------------- | -------------------------------------------------------------- |
| path | table of strings | PATH to use to find binaries |
| env | row | the environment variables to pass to external commands |
| ctrlc_exit | boolean | whether or not to exit Nu after multiple ctrl-c presses |
| table_mode | "light" or other | enable lightweight or normal tables |
| edit_mode | "vi" or "emacs" | changes line editing to "vi" or "emacs" mode |
| completion_mode | "circular" or "list" | changes completion type to "circular" (default) or "list" mode |
## Examples