fpv 0.1.12

A minimal, keyboard-first TUI file previewer with syntax highlighting
Documentation
1
2
3
4
5
6
7
8
use crate::app::state::{FocusPane, SessionState};

pub fn switch_focus(state: &mut SessionState) {
    state.focus_pane = match state.focus_pane {
        FocusPane::Tree => FocusPane::Preview,
        FocusPane::Preview => FocusPane::Tree,
    };
}