Skip to content

Commit 42e05f4

Browse files
committed
1.5.1
1 parent 6c7a793 commit 42e05f4

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: build
22

33
env:
4-
v: '1.5.0'
4+
v: '1.5.1'
55
av: '1.0.0'
66
swtv: '0.0.1'
77

docs/release-history.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
## 1.5.0
1+
## 1.5.1
2+
3+
Improvement: "Minio" factory method is missing region parameter by @zitmen in #20.
4+
5+
## 1.5.0
26

37
### New features
48

src/Stowage.Terminal/FSView.cs

+5
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ public FSView(IFileStorage fs, IOPath? startPath = null) {
2626
_entryList.Y = 2;
2727
_entryList.Width = Dim.Fill();
2828
_entryList.Height = Dim.Fill() - 1;
29+
//_entryList.AllowsMultipleSelection = true;
30+
//_entryList.AllowsMarking = true;
31+
// vim-style navigation
32+
_entryList.AddKeyBinding(Key.j, Command.LineDown);
33+
_entryList.AddKeyBinding(Key.k, Command.LineUp);
2934
Ls();
3035

3136
Add(_pathLabel);

0 commit comments

Comments
 (0)