feat: start work on file list view

This commit is contained in:
CJ van den Berg 2024-07-27 13:28:45 +02:00
parent 054400ce3b
commit d22dcff571
2 changed files with 158 additions and 0 deletions

View file

@ -285,6 +285,10 @@ const cmds = struct {
_ = try self.toggle_panel_view(@import("inspector_view.zig"), true);
}
pub fn toggle_filelist_view(self: *Self, _: Ctx) Result {
_ = try self.toggle_panel_view(@import("filelist_view.zig"), false);
}
pub fn jump_back(self: *Self, _: Ctx) Result {
try self.location_history.back(location_jump);
}