Add capitalize(s) function (#1375)

`capitalize(s)` converts the first character of s to uppercase
and the rest to lowercase.
This commit is contained in:
Cihan Demirci 2022-10-25 04:39:40 +01:00 committed by GitHub
parent ffb547924a
commit aaef61b908
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 29 additions and 1 deletions

View File

@ -1142,6 +1142,8 @@ The executable is at: /bin/just
#### String Manipulation
- `capitalize(s)`<sup>master</sup> - Convert first character of `s` to uppercase and the rest to lowercase.
- `lowercase(s)` - Convert `s` to lowercase.
- `quote(s)` - Replace all single quotes with `'\''` and prepend and append single quotes to `s`. This is sufficient to escape special characters for many shells, including most Bourne shell descendants.

View File

@ -31,7 +31,7 @@ contexts:
- match: '\}\}'
pop: true
functions:
- match: \b(arch|os|os_family|env_var|env_var_or_default|invocation_directory|justfile|justfile_directory|just_executable|lowercase|quote|replace|trim|trim_end|trim_end_match|trim_end_matches|trim_start|trim_start_match|trim_start_matches|uppercase|absolute_path|extension|file_name|file_stem|parent_directory|without_extension|join|clean|path_exists|error|sha256|sha256_file|uuid)\b(?=\()
- match: \b(arch|os|os_family|env_var|env_var_or_default|invocation_directory|justfile|justfile_directory|just_executable|lowercase|quote|replace|trim|trim_end|trim_end_match|trim_end_matches|trim_start|trim_start_match|trim_start_matches|uppercase|absolute_path|extension|file_name|file_stem|parent_directory|without_extension|join|clean|path_exists|error|sha256|sha256_file|uuid|capitalize)\b(?=\()
scope: entity.name.function.just
keywords:
- match: \b(if|else|while)\b

View File

@ -16,6 +16,7 @@ lazy_static! {
pub(crate) static ref TABLE: BTreeMap<&'static str, Function> = vec![
("absolute_path", Unary(absolute_path)),
("arch", Nullary(arch)),
("capitalize", Unary(capitalize)),
("clean", Unary(clean)),
("env_var", Unary(env_var)),
("env_var_or_default", Binary(env_var_or_default)),
@ -79,6 +80,21 @@ fn arch(_context: &FunctionContext) -> Result<String, String> {
Ok(target::arch().to_owned())
}
fn capitalize(_context: &FunctionContext, s: &str) -> Result<String, String> {
Ok(
s.chars()
.enumerate()
.flat_map(|(i, c)| {
if i == 0 {
c.to_uppercase().collect::<Vec<_>>()
} else {
c.to_lowercase().collect::<Vec<_>>()
}
})
.collect(),
)
}
fn clean(_context: &FunctionContext, path: &str) -> Result<String, String> {
Ok(Path::new(path).lexiclean().to_str().unwrap().to_owned())
}

View File

@ -303,6 +303,16 @@ test! {
stderr: "echo foofoofoo\n",
}
test! {
name: capitalize,
justfile: "
foo:
echo {{ capitalize('BAR') }}
",
stdout: "Bar\n",
stderr: "echo Bar\n",
}
fn assert_eval_eq(expression: &str, result: &str) {
Test::new()
.justfile(format!("x := {}", expression))