mirror of
https://github.com/veeso/termscp.git
synced 2026-06-08 22:28:37 +02:00
fix: Jump to next entry after select (#262)
This commit is contained in:
committed by
GitHub
parent
e5172d4207
commit
b5b3aeb645
@@ -1,6 +1,7 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
- [Changelog](#changelog)
|
- [Changelog](#changelog)
|
||||||
|
- [0.14.0](#0140)
|
||||||
- [0.13.0](#0130)
|
- [0.13.0](#0130)
|
||||||
- [0.12.3](#0123)
|
- [0.12.3](#0123)
|
||||||
- [0.12.2](#0122)
|
- [0.12.2](#0122)
|
||||||
@@ -35,6 +36,13 @@
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## 0.14.0
|
||||||
|
|
||||||
|
Released on ??
|
||||||
|
|
||||||
|
- [Issue 241](https://github.com/veeso/termscp/issues/241): Jump to next entry after select
|
||||||
|
- [Issue 257](https://github.com/veeso/termscp/issues/257): CLI remote args cannot handle '@' in the username
|
||||||
|
|
||||||
## 0.13.0
|
## 0.13.0
|
||||||
|
|
||||||
Released on 03/03/2024
|
Released on 03/03/2024
|
||||||
|
|||||||
@@ -102,6 +102,8 @@ impl OwnStates {
|
|||||||
true => self.deselect(entry),
|
true => self.deselect(entry),
|
||||||
false => self.select(entry),
|
false => self.select(entry),
|
||||||
}
|
}
|
||||||
|
// increment index
|
||||||
|
self.incr_list_index(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Select all files
|
/// Select all files
|
||||||
|
|||||||
Reference in New Issue
Block a user