Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cleanup the repo #54

Merged
merged 29 commits into from
Apr 19, 2024
Merged

cleanup the repo #54

merged 29 commits into from
Apr 19, 2024

Conversation

amtoine
Copy link
Owner

@amtoine amtoine commented Apr 18, 2024

just some random cleanup of the repo, typos, commenting unwraps, refactoring, ...

crate structure

before

src/
├── app.rs
├── config
│   ├── mod.rs
│   └── parsing.rs
├── edit.rs
├── event.rs
├── handler.rs
├── lib.rs
├── main.rs
├── navigation.rs
├── nu
│   ├── cell_path.rs
│   ├── mod.rs
│   ├── strings.rs
│   └── value.rs
├── tui.rs
└── ui.rs

after

src/
├── app.rs             # defines App
├── config
│   ├── mod.rs
│   └── parsing.rs
├── edit.rs
├── handler.rs         # implements App
├── lib.rs
├── main.rs
├── navigation.rs      # implements App
├── nu
│   ├── cell_path.rs
│   ├── mod.rs
│   ├── strings.rs
│   └── value.rs
├── tui
│   ├── event.rs
│   └── mod.rs
└── ui.rs

full changelog

@amtoine amtoine changed the title cleanup cleanup the repo Apr 19, 2024
@amtoine amtoine marked this pull request as ready for review April 19, 2024 13:29
@amtoine amtoine merged commit 98a0c85 into main Apr 19, 2024
4 checks passed
@amtoine amtoine deleted the cleanup branch April 19, 2024 13:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant