mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-25 19:03:30 +04:00
08b2ecc99a
* feat: cargo xtask themelint <theme> * fix: add docs and print json error status * fix: refactor paths -> path * fix: remove unused function * fix: only report one err per scope (ui.statusline is reported if none of ui.statusline.* is recognized) * fix: save work for later * fix: finally decided on a design * fix: ready for discussion * fix: better rules * fix: lint precision * fix: String -> &'static str * fix: allowlist not denylist for file type * fix: add missing and indication of what's needed * fix: copy pasteable errors * fix: use Loader:read_names * Update xtask/src/helpers.rs Co-authored-by: Ivan Tham <pickfire@riseup.net> * fix: remove into and clone for str * Update book/src/themes.md Co-authored-by: Ivan Tham <pickfire@riseup.net> * fix: better lint output * fix: cleaner logic for lint reporting * style: use explicit imports * Pascal support (#3542) * fix: add difference check for statusline normal,insert,select * fix: fg for whitespace and early exit if and one is ok * chore: cleaning up, no idea how these got here or how this will look * chore: revert from older commit? * refactor: use static fn to equalize api between difference and existance * refactor: querycheck and clippy * refactor: clippy fixes * fix: query-check behaves as before * fix: error with x of y message, not total count * fix: consistent reporting and less mutable state * fix: selection difference ref #3942 ref #1833 Co-authored-by: Ivan Tham <pickfire@riseup.net> Co-authored-by: ath3 <45574139+ath3@users.noreply.github.com>
62 lines
1.6 KiB
Rust
62 lines
1.6 KiB
Rust
mod docgen;
|
|
mod helpers;
|
|
mod path;
|
|
mod querycheck;
|
|
mod themelint;
|
|
|
|
use std::{env, error::Error};
|
|
|
|
type DynError = Box<dyn Error>;
|
|
|
|
pub mod tasks {
|
|
use crate::docgen::{lang_features, typable_commands, write};
|
|
use crate::docgen::{LANG_SUPPORT_MD_OUTPUT, TYPABLE_COMMANDS_MD_OUTPUT};
|
|
use crate::querycheck::query_check;
|
|
use crate::themelint::{lint, lint_all};
|
|
use crate::DynError;
|
|
|
|
pub fn docgen() -> Result<(), DynError> {
|
|
write(TYPABLE_COMMANDS_MD_OUTPUT, &typable_commands()?);
|
|
write(LANG_SUPPORT_MD_OUTPUT, &lang_features()?);
|
|
Ok(())
|
|
}
|
|
|
|
pub fn themelint(file: Option<String>) -> Result<(), DynError> {
|
|
match file {
|
|
Some(file) => lint(file),
|
|
None => lint_all(),
|
|
}
|
|
}
|
|
|
|
pub fn querycheck() -> Result<(), DynError> {
|
|
query_check()
|
|
}
|
|
|
|
pub fn print_help() {
|
|
println!(
|
|
"
|
|
Usage: Run with `cargo xtask <task>`, eg. `cargo xtask docgen`.
|
|
|
|
Tasks:
|
|
docgen: Generate files to be included in the mdbook output.
|
|
themelint <theme>: Report errors for <theme>, or all themes if no theme is specified.
|
|
query-check: Check that tree-sitter queries are valid.
|
|
"
|
|
);
|
|
}
|
|
}
|
|
|
|
fn main() -> Result<(), DynError> {
|
|
let task = env::args().nth(1);
|
|
match task {
|
|
None => tasks::print_help(),
|
|
Some(t) => match t.as_str() {
|
|
"docgen" => tasks::docgen()?,
|
|
"themelint" => tasks::themelint(env::args().nth(2))?,
|
|
"query-check" => tasks::querycheck()?,
|
|
invalid => return Err(format!("Invalid task name: {}", invalid).into()),
|
|
},
|
|
};
|
|
Ok(())
|
|
}
|