-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add comments to the default configuration
- Loading branch information
Showing
3 changed files
with
23 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
show_cell_path: true, | ||
layout: "table", | ||
show_cell_path: true, # whether or not to show the current cell path above the status bar | ||
layout: "table", # the layout of the data, either "table" or "compact" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
{ | ||
quit: 'q', | ||
insert: 'i', | ||
normal: "escape", | ||
navigation: { | ||
left: 'h', | ||
down: 'j', | ||
up: 'k', | ||
right: 'l', | ||
quit: 'q', # quit `explore` | ||
insert: 'i', # go to INSERT mode to modify the data | ||
normal: "escape", # go back to NORMAL mode to navigate through the data | ||
navigation: { # only in NORMAL mode | ||
left: 'h', # go back one level in the data | ||
down: 'j', # go one row down in the current level | ||
up: 'k', # go one row up in the current level | ||
right: 'l', # go one level deeper in the data or hit the bottom | ||
}, | ||
peek: 'p', | ||
peeking: { | ||
all: 'a', | ||
current: 'c', | ||
under: 'u', | ||
quit: "escape", | ||
peek: 'p', # go to PEEKING mode to peek a value | ||
peeking: { # only in PEEKING mode | ||
all: 'a', # peek the whole data, from the top level | ||
current: 'c', # peek the current data, i.e. what is visible | ||
under: 'u', # peek only what's under the cursor | ||
quit: "escape", # go back to NORMAL mode to navigate through the data | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters