作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当然,我们可以创建别名,但是我们会失去 Debian 集成。例如,前 3 个有效,因为它们只是别名,但最后 3 个失败:
NVIM_PATH=/usr/local/bin/nvim
update-alternatives --install /usr/bin/vi vi "${NVIM_PATH}" 110
update-alternatives --install /usr/bin/vim vim "${NVIM_PATH}" 110
update-alternatives --install /usr/bin/editor neovim /usr/local/bin/nvim 110
update-alternatives --install /usr/bin/view view "${NVIM_PATH}" 110
update-alternatives --install /usr/bin/vimdiff vimdiff "${NVIM_PATH}" 110
update-alternatives --install /usr/bin/ex ex "${NVIM_PATH}" 110
view、vimdiff 和 ex 命令只是正常启动 nvim,而不是分别以只读、diff 和 ex 模式启动。
最佳答案
update-alternatives --install /usr/bin/editor editor /usr/bin/vi 10
update-alternatives --install /usr/bin/editor editor /usr/bin/vim 20
update-alternatives --install /usr/bin/editor editor /usr/local/bin/nvim 30
update-alternatives --install /usr/bin/editor editor /usr/bin/view 40
update-alternatives --install /usr/bin/editor editor /usr/bin/vimdiff 50
update-alternatives --install /usr/bin/editor editor /usr/bin/ex 60
为首选编辑器设置高优先级。
关于shell - 如何为前 View 和 vimdiff 行为配置带有更新替代方案的 neovim?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71741860/
我是一名优秀的程序员,十分优秀!