Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: Key bindings not working under screen



On Feb 15,  7:59pm, Thorsten Kampe wrote:
}
} > I further suspect that some of your bindkey settings are always ending
} > up in the emacs keymap, even when ZLE is in vi mode.  Have you tried
} > capturing the bindkey output in a file in each case and diffing them?
} 
} As far as I can see, these are all from my .zshrc (the deleted ones and 
} the ones before the "->"):

That would appear to mean that sourcing your .zshrc file is stopping
before reaching the end.  Try something like

# at the top of .zshrc
exec 2> /tmp/zshrc$$
setopt xtrace

# at the bottom of .zshrc
exec 2>&1
setopt noxtrace

See if it ever reaches that last, for one thing.  Either way examine the
trace file to see if your bindkey commands are ever being executed.



Messages sorted by: Reverse Date, Date, Thread, Author