dz6 0.5.1

A vim-inspired, TUI-based hexadecimal editor
1
2
3
4
5
6
7
use crate::app::App;

impl App {
    pub fn switch_editor_view(&mut self) {
        self.editor_view.next();
    }
}