From bb3cc9e1532dbbbcf11fa51fa84c6fadbfbd5a55 Mon Sep 17 00:00:00 2001 From: Antoine Stevan <44101798+amtoine@users.noreply.github.com> Date: Wed, 9 Aug 2023 15:18:12 +0200 Subject: [PATCH] fix the default config for `explore` (#9962) according to https://github.com/nushell/nushell/blob/0674d4960b8b09073b31cca9e62eeeb1a1ddd4a8/crates/nu-explore/src/commands/table.rs#L132-L135 the config should be called `$env.config.explore.table.show_cursor` instead of the current `$env.config.explore.table.cursor` :open_mouth: this PR fixes this in the default config. --- crates/nu-utils/src/sample_config/default_config.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-utils/src/sample_config/default_config.nu b/crates/nu-utils/src/sample_config/default_config.nu index 8f57f572c..e7d2ba630 100644 --- a/crates/nu-utils/src/sample_config/default_config.nu +++ b/crates/nu-utils/src/sample_config/default_config.nu @@ -191,7 +191,7 @@ $env.config = { selected_cell: {}, selected_row: {}, selected_column: {}, - cursor: true, + show_cursor: true, line_head_top: true, line_head_bottom: true, line_shift: true,