mirror of
https://github.com/nushell/nushell.git
synced 2025-08-16 11:17:52 +02:00
disable bracketed paste during evaluation (#9399)
# Description Fixes: #9218 When user execute some commands involve user input, currently if we enable `bracketed_paste`, it will results strange behavior (Pasting `0~` and `1~` around texts, e.g: `aaa` -> `0~aaa1~`) And this is why `gpg` with paste failed. Sorry that it's hard to make relative testing... # 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 -A clippy::result_large_err` 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. -->
This commit is contained in:
@ -607,6 +607,11 @@ pub fn evaluate_repl(
|
||||
}
|
||||
}
|
||||
|
||||
// should disable bracketed_paste to avoid strange pasting behavior
|
||||
// while running commands.
|
||||
#[cfg(not(target_os = "windows"))]
|
||||
let _ = line_editor.disable_bracketed_paste();
|
||||
|
||||
eval_source(
|
||||
engine_state,
|
||||
stack,
|
||||
@ -615,6 +620,10 @@ pub fn evaluate_repl(
|
||||
PipelineData::empty(),
|
||||
false,
|
||||
);
|
||||
if engine_state.get_config().bracketed_paste {
|
||||
#[cfg(not(target_os = "windows"))]
|
||||
let _ = line_editor.enable_bracketed_paste();
|
||||
}
|
||||
}
|
||||
let cmd_duration = start_time.elapsed();
|
||||
|
||||
|
Reference in New Issue
Block a user