diff --git a/CHANGELOG.md b/CHANGELOG.md index 504f975..a6154df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,12 @@ Released on FIXME: date -- REPL +- **New explorer features**: + - **Execute** a command pressing `X`. This feature is supported on both local and remote hosts (only SFTP/SCP protocols support this feature). +- Bugfix: + - Prevent resetting explorer index on remote tab after performing certain actions (list dir, exec, ...) + - SCP file transfer: prevent infinite loops while performing `stat` on symbolic links pointing to themselves (e.g. `mylink -> mylink`) + - Fixed a bug causing termscp to crash if removing a bookmark ## 0.3.3 diff --git a/src/ui/activities/auth_activity/bookmarks.rs b/src/ui/activities/auth_activity/bookmarks.rs index 40d2c33..dde9421 100644 --- a/src/ui/activities/auth_activity/bookmarks.rs +++ b/src/ui/activities/auth_activity/bookmarks.rs @@ -50,7 +50,7 @@ impl AuthActivity { self.write_bookmarks(); } // Delete element from vec - self.recents_list.remove(idx); + self.bookmarks_list.remove(idx); } }