- Add and wire through git method stubs - Organize render methods - Track modifier changes - Swap commit buttons when `option`/`alt` is held - More TODOs Release Notes: - N/A
22 lines
349 B
Rust
22 lines
349 B
Rust
use ::settings::Settings;
|
|
use gpui::{actions, AppContext};
|
|
use settings::GitPanelSettings;
|
|
|
|
pub mod git_panel;
|
|
mod settings;
|
|
|
|
actions!(
|
|
git_ui,
|
|
[
|
|
StageAll,
|
|
UnstageAll,
|
|
DiscardAll,
|
|
CommitStagedChanges,
|
|
CommitAllChanges
|
|
]
|
|
);
|
|
|
|
pub fn init(cx: &mut AppContext) {
|
|
GitPanelSettings::register(cx);
|
|
}
|