ZSH 目录扩展('..' 为 '../')

发布于 2024-12-25 06:20:04 字数 607 浏览 1 评论 0原文

我最近开始学习和使用ZSH。

我面临的问题是 ZSH 不会将命令(如“cd”、“cp”等)中的“..”自动扩展为“../”。巴什就是这样做的。

如果我使用美国布局的键盘,这不会是一个大问题……但在斯堪的纳维亚半岛,“/”位于 SHIFT+7 后面,因此敲击速度要快得多。

我将如何继续并实现这种自动扩展?我正在使用“Oh my ZSH”包。输入“cd ..”后输入 CTRL+xh 将给出以下内容:

21:16:50 amjr@imac development ruby-1.9.2-p290 cd ..
tags in context :completion::complete:cd::
    local-directories named-directories      (_alternative _cd (eval)) 
    users named-directories directory-stack  (_tilde _alternative _cd (eval)) 
    users                                    (_users _tilde _alternative _cd (eval))

任何帮助将不胜感激!

I've recently started to learn and use ZSH.

The problem I'm facing is that ZSH won't auto-expand '..' in commands (like 'cd', 'cp' and so on) into '../'. Bash does this.

This wouldn't be such an big issue if I were using keyboard with US-layout... but in scandinavia '/' is behind SHIFT+7 so hitting is much faster.

How would I go on and implement such automatic expansion? I'm usin 'Oh my ZSH' package. Typing CTRL+xh after typing 'cd ..' gives the following:

21:16:50 amjr@imac development ruby-1.9.2-p290 cd ..
tags in context :completion::complete:cd::
    local-directories named-directories      (_alternative _cd (eval)) 
    users named-directories directory-stack  (_tilde _alternative _cd (eval)) 
    users                                    (_users _tilde _alternative _cd (eval))

Any help would be appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ヅ她的身影、若隐若现 2025-01-01 06:20:04

我想要实现的是,当我输入“..”后点击它时,它会将其扩展为“../”。

我设法通过添加以下内容来实现此功能:

zstyle ':completion:*' special-dirs true

到我的 .zshrc 中

What I was trying to achieve is that when I hit after typing '..' it would expand it into '../'.

I managed to get this working by adding:

zstyle ':completion:*' special-dirs true

into my .zshrc

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文