Remove spaces at the end of lines

This commit is contained in:
Vladimir Rudnyh 2013-12-03 23:25:52 +04:00
parent 8af98f7d29
commit 196cfa0eb0
2 changed files with 6 additions and 6 deletions

View file

@ -29,7 +29,7 @@ this:
```sh ```sh
# Accept suggestions without leaving insert mode # Accept suggestions without leaving insert mode
bindkey '^f' vi-forward-word bindkey '^f' vi-forward-word
# or # or
bindkey '^f' vi-forward-blank-word bindkey '^f' vi-forward-blank-word
``` ```

View file

@ -1,5 +1,5 @@
# Fish-like autosuggestions for zsh. Some of the code was based on the code # Fish-like autosuggestions for zsh. Some of the code was based on the code
# for 'predict-on' # for 'predict-on'
# #
# ```zsh # ```zsh
# zle-line-init() { # zle-line-init() {
@ -68,11 +68,11 @@ autosuggest-resume() {
local widget local widget
# Replace prediction widgets by versions that will also highlight RBUFFER # Replace prediction widgets by versions that will also highlight RBUFFER
zle -A autosuggest-insert-or-space self-insert zle -A autosuggest-insert-or-space self-insert
zle -A autosuggest-insert-or-space magic-space zle -A autosuggest-insert-or-space magic-space
zle -A autosuggest-backward-delete-char backward-delete-char zle -A autosuggest-backward-delete-char backward-delete-char
zle -A autosuggest-accept-line accept-line zle -A autosuggest-accept-line accept-line
# Hook into some default widgets that should suspend autosuggestion # Hook into some default widgets that should suspend autosuggestion
# automatically # automatically
for widget in $ZLE_AUTOSUGGEST_ACCEPT_WIDGETS; do for widget in $ZLE_AUTOSUGGEST_ACCEPT_WIDGETS; do
[[ -z $widgets[$widget] ]] && continue [[ -z $widgets[$widget] ]] && continue
eval "zle -A autosuggest-accept-suggestion $widget" eval "zle -A autosuggest-accept-suggestion $widget"