9 lines
140 B
Bash
9 lines
140 B
Bash
#!/usr/bin/env zsh
|
|
|
|
local -i cursor=CURSOR
|
|
{
|
|
typeset -gi CURSOR='_z4h_cursor_max()'
|
|
zle autosuggest-accept
|
|
} always {
|
|
CURSOR=cursor
|
|
}
|