Skip to content
This repository has been archived by the owner on May 19, 2022. It is now read-only.

Do not "eval" in zsh's _fasd_preexec #99

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Aug 12, 2016

  1. Do not "eval" in zsh's _fasd_preexec

    This causes the following to misbehave:
    
        % foo=0
        % $((foo++))
        zsh: command not found: 1
        % echo $foo
        2
    
    While it should be:
    
        % foo=0
        % $((foo++))
        zsh: command not found: 0
        % echo $foo
        1
    
    This should probably also not be used with the other shells, but I have
    not investigated there.
    blueyed committed Aug 12, 2016
    Configuration menu
    Copy the full SHA
    68f898b View commit details
    Browse the repository at this point in the history