aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKoichi Murase <myoga.murase@gmail.com>2024-01-02 17:29:16 +0900
committerGitHub <noreply@github.com>2024-01-02 08:29:16 +0000
commitd9dab6c92da773918a2c2a53509f286d2ac912f9 (patch)
tree35c868b1ea4f561a0797b189b4bcfe850fbc77dd
parentdocs: update logo (#1481) (diff)
downloadatuin-d9dab6c92da773918a2c2a53509f286d2ac912f9.zip
refactor(bash): refactor and optimize `__atuin_accept_line` (#1482)
* fix(bash): prefix "__atuin_" to avoid variable conflicts Because the function "__atuin_history" executes an arbitary user command for "enter_accept", the local variable names should be carefully chosen. A local variable can shadow a global variable that the user wants to use when there is a name conflict. To avoid such a situation we try to namespace the variables used by atuin by prefixing "__atuin_". * fix(bash): work around "shopt -s xpg_echo" * refactor(bash): simplify the rendering of the prompt * perf(bash): avoid extra evaluation of PS1 * refactor(bash): count \n by wc We can simply use "wc -l" to count the number of newline characters. In the POSIX standard, a line in a text stream is defined as characters terminated by a newline character, so the unterminated line is not counted by "wc -l". As a result, "wc -l" actually counts the number of newline characters. * refactor(bash): rename localvar `HISTORY => __atuin_command` This patch renames the local variable `HISTORY` in __atuin_accept_line to `__atuin_command`. The name of the global variable `HISTORY` set by `__atuin_history` is kept.
-rw-r--r--atuin/src/shell/atuin.bash42
1 files changed, 21 insertions, 21 deletions
diff --git a/atuin/src/shell/atuin.bash b/atuin/src/shell/atuin.bash
index f493286d..6257d2c9 100644
--- a/atuin/src/shell/atuin.bash
+++ b/atuin/src/shell/atuin.bash
@@ -22,50 +22,51 @@ __atuin_set_ret_value() {
}
__atuin_accept_line() {
- local HISTORY=$1
+ local __atuin_command=$1
# Reprint the prompt, accounting for multiple lines
+ local __atuin_prompt=${PS1@P}
local __atuin_prompt_offset
- __atuin_prompt_offset=$(echo -n "${PS1@P}" | tr -cd '\n' | wc -c)
+ __atuin_prompt_offset=$(printf '%s' "$__atuin_prompt" | wc -l)
if ((__atuin_prompt_offset > 0)); then
tput cuu "$__atuin_prompt_offset"
fi
- echo "${PS1@P}$HISTORY"
+ printf '%s\n' "$__atuin_prompt$__atuin_command"
# Add it to the bash history
- history -s "$HISTORY"
+ history -s "$__atuin_command"
# Assuming bash-preexec
# Invoke every function in the preexec array
- local preexec_function
- local preexec_function_ret_value
- local preexec_ret_value=0
- for preexec_function in "${preexec_functions[@]:-}"; do
- if type -t "$preexec_function" 1>/dev/null; then
+ local __atuin_preexec_function
+ local __atuin_preexec_function_ret_value
+ local __atuin_preexec_ret_value=0
+ for __atuin_preexec_function in "${preexec_functions[@]:-}"; do
+ if type -t "$__atuin_preexec_function" 1>/dev/null; then
__atuin_set_ret_value "${__bp_last_ret_value:-}"
- "$preexec_function" "$HISTORY"
- preexec_function_ret_value="$?"
- if [[ "$preexec_function_ret_value" != 0 ]]; then
- preexec_ret_value="$preexec_function_ret_value"
+ "$__atuin_preexec_function" "$__atuin_command"
+ __atuin_preexec_function_ret_value="$?"
+ if [[ "$__atuin_preexec_function_ret_value" != 0 ]]; then
+ __atuin_preexec_ret_value="$__atuin_preexec_function_ret_value"
fi
fi
done
# If extdebug is turned on and any preexec function returns non-zero
# exit status, we do not run the user command.
- if ! { shopt -q extdebug && ((preexec_ret_value)); }; then
+ if ! { shopt -q extdebug && ((__atuin_preexec_ret_value)); }; then
# Juggle the terminal settings so that the command can be interacted with
- local stty_backup
- stty_backup=$(stty -g)
+ local __atuin_stty_backup
+ __atuin_stty_backup=$(stty -g)
stty "$ATUIN_STTY"
# Execute the command. Note: We need to record $? and $_ after the
# user command within the same call of "eval" because $_ is otherwise
# overwritten by the last argument of "eval".
__atuin_set_ret_value "${__bp_last_ret_value-}" "${__bp_last_argument_prev_command-}"
- eval -- "$HISTORY"$'\n__bp_last_ret_value=$? __bp_last_argument_prev_command=$_'
+ eval -- "$__atuin_command"$'\n__bp_last_ret_value=$? __bp_last_argument_prev_command=$_'
- stty "$stty_backup"
+ stty "$__atuin_stty_backup"
fi
# Execute preprompt commands
@@ -76,10 +77,9 @@ __atuin_accept_line() {
done
# Bash will redraw only the line with the prompt after we finish,
# so to work for a multiline prompt we need to print it ourselves,
- # then move up a line
+ # then go to the beginning of the last line.
__atuin_set_ret_value "${__bp_last_ret_value-}" "${__bp_last_argument_prev_command-}"
- echo "${PS1@P}"
- tput cuu 1
+ printf '%s\r' "${PS1@P}"
}
__atuin_history() {