Skip to content

Commit 8744b14

Browse files
committed
chore: release v0.6.5
1 parent cd9c3a0 commit 8744b14

File tree

4 files changed

+50
-145
lines changed

4 files changed

+50
-145
lines changed

Cargo.lock

Lines changed: 9 additions & 112 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "otree"
3-
version = "0.6.4"
3+
version = "0.6.5"
44
edition = "2021"
55
build = "build.rs"
66
license = "MIT"

docs/actions.md

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
# All Available Actions
22

3-
| Action | Default Keys | Description |
4-
| ------------------------- | ------------------------- | ------------------------------------------------------------ |
5-
| move_up | `k`, `<up>` | Move cursor up |
6-
| move_down | `j`, `<down>` | Move cursor down |
7-
| move_left | `h`, `<left>` | Move cursor left<br />*In filter mode: move cursor back* |
8-
| move_right | `l`, `<right>` | Move cursor right<br />*In filter mode: move cursor forward* |
9-
| select_focus | `<enter>` | Toggle select current item<br />*In filter mode: confirm filtering* |
10-
| select_parent | `p` | Move cursor to the parent item |
11-
| select_first | `g` | Move cursor to the top<br />*In filter mode: move cursor to the head* |
12-
| select_last | `G` | Move cursor to the bottom<br />*In filter mode: move cursor to the end* |
13-
| close_parent | `<backspace>` | Move cursor to the parent and close<br />*In filter mode: delete a character* |
14-
| change_root | `r` | Change current item as root<br/>Use `reset` action to recover |
15-
| reset | `<esc>` | Reset cursor and items<br />*In filter mode: cancel filtering* |
16-
| page_up | `<page-up>`, `<ctrl-y>` | Scroll up |
17-
| page_down | `<page-down>`, `<ctrl-e>` | Scroll down |
18-
| change_layout | `v` | Change current layout |
19-
| tree_scale_up | `[` | Scale up tree widget |
20-
| tree_scale_down | `]` | Scale down tree widget |
21-
| switch | `<tab>` | Switch focus widget |
22-
| edit | `e` | Open current item in editor<br />**(ReadOnly)** |
23-
| copy_name | `y` | Copy current selected item's name |
24-
| copy_value | `Y` | Copy current selected item's value |
25-
| filter | `/` | Enter the filter mode (key and value) |
26-
| filter_key | `?` | Enter the filter mode (key) |
27-
| filter_value | `*` | Enter the filter mode (value) |
28-
| filter_next_match | `n` | Navigate to the next match item<br />*Filter mode only* |
29-
| filter_prev_match | `N` | Navigate to the previous match item<br />*Filter mode only* |
30-
| filter_switch_ignore_case | `I` | Change the filter's ignore case mode<br />*Filter mode only* |
31-
| expand_children | `x` | Expand all selected item's children |
32-
| expand_all | `X` | Expand all items |
33-
| show_help | `H` | Show help message |
34-
| quit | `<ctrl-c>`, `q` | Quit program |
3+
| Action | Default Keys | Description |
4+
| ------------------------- | ------------------------- | ----------------------------------------------------------------------------- |
5+
| move_up | `k`, `<up>` | Move cursor up |
6+
| move_down | `j`, `<down>` | Move cursor down |
7+
| move_left | `h`, `<left>` | Move cursor left<br />_In filter mode: move cursor back_ |
8+
| move_right | `l`, `<right>` | Move cursor right<br />_In filter mode: move cursor forward_ |
9+
| select_focus | `<enter>` | Toggle select current item<br />_In filter mode: confirm filtering_ |
10+
| select_parent | `p` | Move cursor to the parent item |
11+
| select_first | `g`, `<home>` | Move cursor to the top<br />_In filter mode: move cursor to the head_ |
12+
| select_last | `G`, `<end>` | Move cursor to the bottom<br />_In filter mode: move cursor to the end_ |
13+
| close_parent | `<backspace>` | Move cursor to the parent and close<br />_In filter mode: delete a character_ |
14+
| change_root | `r` | Change current item as root<br/>Use `reset` action to recover |
15+
| reset | `<esc>` | Reset cursor and items<br />_In filter mode: cancel filtering_ |
16+
| page_up | `<page-up>`, `<ctrl-y>` | Scroll up |
17+
| page_down | `<page-down>`, `<ctrl-e>` | Scroll down |
18+
| change_layout | `v` | Change current layout |
19+
| tree_scale_up | `[` | Scale up tree widget |
20+
| tree_scale_down | `]` | Scale down tree widget |
21+
| switch | `<tab>` | Switch focus widget |
22+
| edit | `e` | Open current item in editor<br />**(ReadOnly)** |
23+
| copy_name | `y` | Copy current selected item's name |
24+
| copy_value | `Y` | Copy current selected item's value |
25+
| filter | `/` | Enter the filter mode (key and value) |
26+
| filter_key | `?` | Enter the filter mode (key) |
27+
| filter_value | `*` | Enter the filter mode (value) |
28+
| filter_next_match | `n` | Navigate to the next match item<br />_Filter mode only_ |
29+
| filter_prev_match | `N` | Navigate to the previous match item<br />_Filter mode only_ |
30+
| filter_switch_ignore_case | `I` | Change the filter's ignore case mode<br />_Filter mode only_ |
31+
| expand_children | `x` | Expand all selected item's children |
32+
| expand_all | `X` | Expand all items |
33+
| show_help | `H` | Show help message |
34+
| quit | `<ctrl-c>`, `q` | Quit program |
3535

3636
All available keys:
3737

docs/changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## v0.6.5
2+
3+
### Features
4+
5+
- Add `home` and `end` keys and map them to scroll\_{first,last}. (#126)
6+
- Add PageUp/PageDown support for Data Block view. (#125)
7+
- Add clipboard functionality with terminal multiplexer support. (#123)
8+
19
## v0.6.4
210

311
### Fixes

0 commit comments

Comments
 (0)