Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions crates/arf-console/src/completion/meta.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,16 @@ const META_COMMANDS: &[MetaCommandDef] = &[
description: "IPC server management (start, stop, status)",
takes_argument: true,
},
MetaCommandDef {
name: "objects",
description: "Browse .GlobalEnv objects",
takes_argument: false,
},
MetaCommandDef {
name: "objs",
description: "Browse .GlobalEnv objects (alias)",
takes_argument: false,
},
MetaCommandDef {
name: "quit",
description: "Quit arf",
Expand Down
2 changes: 2 additions & 0 deletions crates/arf-console/src/pager/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ mod help;
pub mod history_browser;
pub mod history_schema;
pub(crate) mod markdown;
pub mod objects_browser;
pub mod session_info;
pub(crate) mod style_convert;
pub(crate) mod text_utils;

pub use changelog::display_changelog;
pub use help::run_help_browser;
pub use history_browser::{HistoryBrowserResult, HistoryDbMode, run_history_browser};
pub use objects_browser::run_objects_browser;
pub use session_info::display_session_info;

use base64::{Engine, engine::general_purpose};
Expand Down
Loading
Loading