ubuntu设置tab自动补全
程序员文章站
2024-03-21 17:36:34
...
Unbuntu 终端中使用Tab键不能自动补全,所以我们需要修改点东西来解决它
解决方法
1、利用vi编辑器打开 /etc/bash.bashrc文件(需要root权限)
sudo vi /etc/bash.bashrc
2、找到文件中的下列代码
#enable bash completion in interactive shells
#if ! shopt -oq posix; then
# if [-f /usr/share/bash-completion/bash_completion ]; then
# . /usr/share/bash-completion/bash_completion
# elif [ -f /etc/bash_completion]; then
# . /etc/bash_completion
# fi
#fi
3、将注释符号#去掉,即改成
#enable bash completion in interactive shells
if ! shopt -oq posix; then
if [-f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion]; then
. /etc/bash_completion
fi
fi
4、最后 source一下 /etc/bash.bashrc即可, 即
sudo source /etc/bash.bashrc
使用
你可以apt-get install xx
加tab
试一下
推荐阅读
-
ubuntu tab 自动补全失效
-
VIM 自动代码补全以及函数定义跳转功能 环境ubuntu 16.04,使用YouCompleteMe
-
ubuntu设置tab自动补全
-
Ubuntu 16.04 vim YouCompleteMe自动补全的安装配置与使用
-
ubuntu18.04 YCM(YouCompleteMe)自动补全插件安装
-
ubuntu设置tab自动补全
-
notepad++为什么一按enter键就会出现CRLF字符和设置快捷键函数单词自动补全 博客分类: Notepad Notepad
-
Ubuntu下配置Tomcat服务器以及设置自动启动的方法
-
Ubuntu下配置Tomcat服务器以及设置自动启动的方法
-
ubuntu下设置mysql自动备份的例子