nushell/crates/nu-cli/src/completions
JT 32f098d91d
Hopefully speedup startup (#8913)
# Description

Trying a few different things to hopefully speedup startup a bit. I'm
seeing some improvement on my box for the profiles I have, but the data
I'm seeing is noisy.

- Remove allocations in a few places where we created vec's but could
use iterators
- Pre-allocate space for blocks based on the lite block
- Removed a few extra clones

# User-Facing Changes
<!-- List of all changes that impact the user experience here. This
helps us keep track of breaking changes. -->

# Tests + Formatting
<!--
Don't forget to add tests that cover your changes.

Make sure you've run and fixed any issues with these commands:

- `cargo fmt --all -- --check` to check standard code formatting (`cargo
fmt --all` applies these changes)
- `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A
clippy::needless_collect` to check that you're using the standard code
style
- `cargo test --workspace` to check that all tests pass
- `cargo run -- crates/nu-std/tests/run.nu` to run the tests for the
standard library

> **Note**
> from `nushell` you can also use the `toolkit` as follows
> ```bash
> use toolkit.nu # or use an `env_change` hook to activate it
automatically
> toolkit check pr
> ```
-->

# After Submitting
<!-- If your PR had any user-facing changes, update [the
documentation](https://github.com/nushell/nushell.github.io) after the
PR is merged, if necessary. This will help us keep the docs up to date.
-->
2023-04-18 20:19:08 +12:00
..
base.rs Add MatchAlgorithm for completion suggestions (#5244) 2022-04-23 10:01:19 -05:00
command_completions.rs Only add the std lib files once (#8830) 2023-04-10 08:55:47 +12:00
completer.rs Remove old alias implementation (#8797) 2023-04-07 21:09:38 +03:00
completion_options.rs Update path completions to handle spaces (#5419) 2022-05-03 12:37:38 +12:00
custom_completions.rs Allow NU_LIBS_DIR and friends to be const (#8538) 2023-04-05 19:56:48 +03:00
directory_completions.rs files and directory completions now use ascending ordering rather than Levenshtein. #8023 (#8085) 2023-02-22 13:03:48 +00:00
dotnu_completions.rs Use variable names directly in the format strings (#7906) 2023-01-29 19:37:54 -06:00
file_completions.rs files and directory completions now use ascending ordering rather than Levenshtein. #8023 (#8085) 2023-02-22 13:03:48 +00:00
flag_completions.rs Don't resuggest accepted completions (#5369) 2022-05-02 11:35:37 +02:00
mod.rs Update path completions to handle spaces (#5419) 2022-05-03 12:37:38 +12:00
variable_completions.rs Hopefully speedup startup (#8913) 2023-04-18 20:19:08 +12:00