Skip to content
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

Updates for v1.17.0. #24

Merged
merged 1 commit into from
May 28, 2018
Merged
Show file tree
Hide file tree
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
7 changes: 6 additions & 1 deletion content/pages/0.index.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,13 @@ detailed instructions.
--ssl-verify-server-cert Verify server's "Common Name" in its cert
against hostname used when connecting. This
option is disabled by default.
-v, --version Output mycli's version.
-V, --version Output mycli's version.
-v, --verbose Verbose output.
-D, --database TEXT Database to use.
-d, --dsn TEXT Use DSN configured into the [alias_dsn]
section of myclirc file.
--list-dsn list of DSN configured into the [alias_dsn]
section of myclirc file.
-R, --prompt TEXT Prompt format (Default: "\t \u@\h:\d> ").
-l, --logfile FILENAME Log every query and its results to a file.
--defaults-group-suffix TEXT Read MySQL config groups with the specified
Expand Down
9 changes: 6 additions & 3 deletions content/pages/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,12 @@ login_path_as_host = False
# and using normal tabular format otherwise. (This applies to statements terminated by ; or \G.)
auto_vertical_output = False

# keyword casing preference. Possible values "lower", "upper", "auto"
keyword_casing = auto

# Enable the pager on startup.
enable_pager = True

# Custom colors for the completion menu, toolbar, etc.
[colors]
# Completion menus.
Expand Down Expand Up @@ -167,7 +173,4 @@ loose-local-infile = on

# Configure the pager
pager = 'vim -'

# Disable the pager
# skip-pager = on
```
4 changes: 2 additions & 2 deletions content/pages/pager.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ Pager disabled.

## Disable Paging

You can disable the pager by adding `skip-pager = on` to the `[client]` section
of your MySQL option file. See [Configuration](/config) for more information.
You can disable the pager by adding `enable_pager = False` to your mycli config
file. See [Configuration](/config) for more information.

## Pager Behavior

Expand Down