Known Issues
To see a complete list of issues and feature requests, please visit our GitHub issues page.
- We do not support
PROMPT_COMMAND
in bash right now (working on this!). - When you SSH, we start a bash shell on the remote host. We built a wrapper around SSH to make Warp features possible.
- If your default shell is zsh, your aliases typically do not transfer over. Other shells are unsupported for now.
- When you open a non-shell-based subshell (REPL), we do not set it up for Warp - instead, it works like a normal terminal session.
Links to popular GitHub issues:
To enable Blocks over SSH, Warp uses an SSH Wrapper function; navigate to settings > features if you need to disable it.
Note: You'll need to start a new session before a change is reflected or try invoking the SSH binary directly:
/usr/bin/ssh
There is also a known issue with the SSH Wrapper not working in Windows SSH sessions. You can workaround this by installing Cygwin on the Windows machine you'd like to connect to.
There is a known issue that can occur that causes online features to break (Warp AI, AI Command Suggestions, Block Sharing, Refer a Friend, etc. ). This is due to the login token going stale, typically due to a password change, and can be resolved by the following steps:
- Remove Warp user login with
sudo security delete-generic-password -l "dev.warp.Warp-Stable" $HOME/Library/Keychains/login.keychain
Warp may have an error opening after auto-update on macOS Ventura. This issue has been resolved for current and future releases of Warp. To avoid the issue, update Warp before you upgrade to macOS Ventura.
If you experience an error opening Warp, please try the following:
- Go to the macOS Applications folder, right-click on Warp, choose Open, then the '"Warp" is damaged' dialog will have the option to click the Open button.
Nov 2021: We have added character support for Chinese, Korean, and Japanese, but our UI currently only supports English.
If you notice issues with the terminal rendering Chinese characters (i.e. #3366). Please try adding the following lines to your rc file.
export LC_ALL=zh_CN.UTF-8
export LANG=zh_CN.UTF-8
There is an issue in fish shell version 3.4.0 and below that causes the
read
built-in command to break Warp's integration with fish. This means that using read
directly or any fish scripts that call read
will not work as expected in Warp. That issue is resolved in the fish repository and so should be fixed in the next release of fish itself. We recommend upgrading fish to the most recent version to resolve this issue.- usually looks like
test -e "${HOME}/.iterm2_shell_integration.zsh" && source "${HOME}/.iterm2_shell_integration.zsh" || true
- FIG,
z
, other completion plugins - OH-MY-ZSH-THEMES
- e.g. avit, spaceship, maybe more ...
- OH-MY-ZSH-PLUGINS
- Oh-My-Tmux
- zsh4h (ZSH for Humans)
- FZF
- fubectl
[ -f ${HOME}/bin/fubectl.source ] && source ${HOME}/bin/fubectl.source
bindkey '^j' down-line-or-beginning-search
, which causes users to have to hit ENTER twice to run a command.bindkey 'tab' autosuggest-accept
, which causes incorrect behavior with autocompletion.
- [[ -r "/usr/local/etc/profile.d/bash_completion.sh" ]] && "/usr/local/etc/profile.d/bash_completion.sh"
- eval "$(rbenv init -)"
- grml-zsh-config
In order to support Blocks (custom hooks), a native Input Editor experience, etc. we have to build custom support for a subset of shell functionality (decouple functionality from the shell and move to the terminal). This leads to Warp being incompatible with various tools and plugins.
You can however, disable the conflicting settings for just Warp using this flag:
$TERM_PROGRAM != "WarpTerminal"
, see below for a full example.We currently don't have support for multi-line custom prompts in bash, only zsh and fish. Unlike typical terminals which are essentially continuous character grids, each section of Warp is its own (separate) UI element. Warps default prompt does not support multi-line or right sided prompts at this time. Improving the native Prompt is on the roadmap, however. Please see our Prompt page for more information on custom prompts.
If Warp is not working with your dotfile configuration,
You can quickly set up clean configs by putting
ZDOTDIR=/
in a ~/.zshenv
file. This forces zsh to run with zero configs.$ZDOTDIR/.zshenv
$ZDOTDIR/.zprofile
$ZDOTDIR/.zshrc
$ZDOTDIR/.zlogin
$ZDOTDIR/.zlogout
If Warp starts working correctly then Warp is incompatible with something in the current dotfiles. We can isolate what is incompatible by iteratively disabling sections of our dotfiles with the
WarpTerminal
flag until we find the culprit. If you find an incompatible tool please email us at [email protected]# bash and zsh
if [[ $TERM_PROGRAM != "WarpTerminal" ]]; then
##### WHAT YOU WANT TO DISABLE FOR WARP - BELOW
# Unsupported plugin/prompt code here
##### WHAT YOU WANT TO DISABLE FOR WARP - ABOVE
fi
# fish
if test "$TERM_PROGRAM" != "WarpTerminal"
# Unsupported plugin/prompt code here
end
A recent version of Fig (happens as of 1.0.56 - and may also happen on earlier versions) updated the bash rcfiles in a way that prevents Warp from bootstrapping.
In order to work around this, you can disable this logic for Warp. Note that you might have to do this for
.bash_profile
and .bashrc
.Also, Fig has a tendency to re-write these lines in these files when it updates - so you might have to do this multiple times if you are using Fig actively.
.bash_profile
# Fig post block. Keep at the bottom of this file.
if [[ $TERM_PROGRAM != "WarpTerminal" ]]; then
. "$HOME/.fig/shell/bash_profile.post.bash"
fi
.bashrc
# Fig post block. Keep at the bottom of this file.
if [[ $TERM_PROGRAM != "WarpTerminal" ]]; then
. "$HOME/.fig/shell/bashrc.post.bash"
fi
Some older installations of Fig (most notably prior to September 2021) include startup scripts that are incompatible with Warp's bootstrap process. As described above in Configuring and debugging your RC files, those scripts should be gated on a check of the
TERM_PROGRAM
environment variable. The two important files in this case are:~/.config/fish/conf.d/00_fig_pre.fish
~/.config/fish/conf.d/99_fig_post.fish
Last modified 1mo ago