mirror of
https://github.com/veeso/termscp.git
synced 2025-12-07 09:36:00 -08:00
Selected file has now colourful background, instead of foreground, for a better readability
This commit is contained in:
@@ -16,7 +16,8 @@ Released on 13/12/2020
|
||||
- Possibility to abort file transfers
|
||||
- Enhancements:
|
||||
- File explorer:
|
||||
- when file index is at the end of the list, moving down will set the current index to the first element and viceversa.
|
||||
- When file index is at the end of the list, moving down will set the current index to the first element and viceversa.
|
||||
- Selected file has now colourful background, instead of foreground, for a better readability.
|
||||
- Keybindings:
|
||||
- `E`: Delete file (Same as `DEL`); added because some keyboards don't have `DEL` (hey, that's my MacBook Air's keyboard!)
|
||||
- `Ctrl+C`: Abort transfer process
|
||||
|
||||
@@ -191,7 +191,8 @@ impl FileTransferActivity {
|
||||
.start_corner(Corner::TopLeft)
|
||||
.highlight_style(
|
||||
Style::default()
|
||||
.fg(Color::Yellow)
|
||||
.fg(Color::Black)
|
||||
.bg(Color::LightYellow)
|
||||
.add_modifier(Modifier::BOLD),
|
||||
)
|
||||
}
|
||||
@@ -231,7 +232,8 @@ impl FileTransferActivity {
|
||||
.start_corner(Corner::TopLeft)
|
||||
.highlight_style(
|
||||
Style::default()
|
||||
.fg(Color::LightBlue)
|
||||
.bg(Color::LightBlue)
|
||||
.fg(Color::Black)
|
||||
.add_modifier(Modifier::BOLD),
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user