"Oh-My-Zsh"에서 "Starship"으로 이동했고 "url-quote-magic" 모듈을 활성화하고 싶습니다.

"Oh-My-Zsh"에서 "Starship"으로 이동했고 "url-quote-magic" 모듈을 활성화하고 싶습니다.

나는 전환했고 oh-my-zshstarship도구가 훨씬 더 낫다는 것을 알았습니다.

나를 괴롭히는 유일한 점은 URI를 터미널에 붙여넣을 때 자동으로 인용되지 않는다는 것입니다. 따라서 URI로는 아무 것도 할 수 없습니다 mpv.yt-dlp

를 사용하면 oh-my-zsh이를 url-quote-magic활성화하기 위해 아무것도 할 필요가 없습니다.

url-quote-magic지금 함께하고 싶어요 starship. 어떻게 url-quote-magic통합 하나요 starship?

brew search url-quote-magic
==> Downloading https://formulae.brew.sh/api/formula.json
######################################################################## 100.0%
Error: No formulae or casks found for "url-quote-magic".

zsh --version
zsh 5.8.1 (x86_64-apple-darwin22.0)

고쳐 쓰다:

Readme 파일의 설치 방법이 작동하지 않습니다.

yt-dlp https://www.youtube.com/watch?v=ii_lXjLFddA
zsh: no matches found: https://www.youtube.com/watch?v=ii_lXjLFddA

mpv https://www.youtube.com/watch?v=36YnV9STBqc
zsh: no matches found: https://www.youtube.com/watch?v=36YnV9STBqc


cat .zshrc
eval "$(starship init zsh)"
source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh
autoload -Uz url-quote-magic
zle -N self-insert url-quote-magic

답변1

~에 따르면문서, zshrc에 다음 줄을 추가하면 됩니다.

autoload -Uz url-quote-magic
zle -N self-insert url-quote-magic

(저는 이것을 Linux 시스템에서 테스트했는데 제게는 효과가 있는 것 같았습니다. 저는 oh-my-zsh나 starship을 사용하지 않습니다.)

대괄호 붙여넣기를 활성화한 경우 다음이 필요합니다.bracketed-paste-magic:

autoload -Uz bracketed-paste-magic
zle -N bracketed-paste bracketed-paste-magic

관련 정보