mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 09:25:38 +02:00
explore
: highlight selected cell using background colour instead of cursor (#10533)
More incremental `explore` improvements! This PR removes the `show_cursor` config from the `explore` command, in favour of always using the background colour to highlight the selected cell. I believe this is a better default and I'd like to remove the `show_cursor` functionality entirely as part of the effort to simplify `explore`. The style for selected cells is still configurable. I went with light blue for the default background colour, it looks OK to me. ## Before:  ## After: 
This commit is contained in:
@ -189,10 +189,9 @@ $env.config = {
|
||||
},
|
||||
table: {
|
||||
split_line: {fg: "#404040"},
|
||||
selected_cell: {},
|
||||
selected_cell: {bg: light_blue},
|
||||
selected_row: {},
|
||||
selected_column: {},
|
||||
show_cursor: true,
|
||||
line_head_top: true,
|
||||
line_head_bottom: true,
|
||||
line_shift: true,
|
||||
|
Reference in New Issue
Block a user