Skip to content

Commit

Permalink
navigation as pub mod
Browse files Browse the repository at this point in the history
  • Loading branch information
raphamorim committed Jan 19, 2024
1 parent 936c4d9 commit 9b0f3bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions frontends/rioterm/src/platform/mod.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
use std::fs::File;
use std::io::Write;

#[cfg(target_os = "macos")]
pub mod macos;

#[cfg(target_os = "macos")]
pub fn create_config_file() {
use std::fs::File;
use std::io::Write;

let default_file_path = rio_backend::config::config_file_path();
if default_file_path.exists() {
return;
Expand Down
2 changes: 1 addition & 1 deletion frontends/rioterm/src/state/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mod navigation;
pub mod navigation;

use crate::ansi::CursorShape;
use crate::crosswords::grid::row::Row;
Expand Down

0 comments on commit 9b0f3bb

Please sign in to comment.