Server IP : 51.89.169.208 / Your IP : 216.73.216.211 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/usr/share/zsh/5.5.1/functions/ |
Upload File : |
# function history-search-end { # # This implements functions like history-beginning-search-{back,for}ward, # but takes the cursor to the end of the line after moving in the # history, like history-search-{back,for}ward. To use them: # zle -N history-beginning-search-backward-end history-search-end # zle -N history-beginning-search-forward-end history-search-end # bindkey '...' history-beginning-search-backward-end # bindkey '...' history-beginning-search-forward-end integer cursor=$CURSOR mark=$MARK if [[ $LASTWIDGET = history-beginning-search-*-end ]]; then # Last widget called set $MARK. CURSOR=$MARK else MARK=$CURSOR fi if zle .${WIDGET%-end}; then # success, go to end of line zle .end-of-line else # failure, restore position CURSOR=$cursor MARK=$mark return 1 fi # }