You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently to disable Ctrl+x to reload zshrc feature you execute sed -i '52 s/^/#/' $ZAP_PLUGIN_DIR/supercharge/supercharge.plugin.zsh to comment the line.
Which MacOS outputs an error: sed: 1: "/Users/<username>/.loc ...": unterminated transform target string
The solution
just modify sed -i '52 s/^/#/' $ZAP_PLUGIN_DIR/supercharge/supercharge.plugin.zsh
to sed -i "" '52 s/^/#/' $ZAP_PLUGIN_DIR/supercharge/supercharge.plugin.zsh
and it should work fine.
The text was updated successfully, but these errors were encountered:
The issue
currently to disable
Ctrl+x
to reload zshrc feature you executesed -i '52 s/^/#/' $ZAP_PLUGIN_DIR/supercharge/supercharge.plugin.zsh
to comment the line.Which MacOS outputs an error:
sed: 1: "/Users/<username>/.loc ...": unterminated transform target string
The solution
just modify
sed -i '52 s/^/#/' $ZAP_PLUGIN_DIR/supercharge/supercharge.plugin.zsh
to
sed -i "" '52 s/^/#/' $ZAP_PLUGIN_DIR/supercharge/supercharge.plugin.zsh
and it should work fine.
The text was updated successfully, but these errors were encountered: