(shell: str)
| 70 | |
| 71 | |
| 72 | def write_script_home(shell: str) -> None: |
| 73 | shelloracle = get_bundled_script_path(shell).read_bytes() |
| 74 | destination = get_script_path(shell) |
| 75 | destination.write_bytes(shelloracle) |
| 76 | print_info(f"Successfully wrote key bindings to {replace_home_with_tilde(destination)}") |
| 77 | |
| 78 | |
| 79 | def update_rc(shell: str) -> None: |
no test coverage detected