ubuntu 14.04 Tab键无效问题解决

sudo vi /etc/bash.bashrc
将注释符号#去掉,即改成
#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
sudo source /etc/bash.bashrc
修改重启后还是无效
解决办法:
编辑~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml文件,在里面内容里找到

<property name="&lt;Super&gt;Tab" type="string" value="switch_window_key"/>,
把它用<property name="&lt;Super&gt;Tab" type="empty"/>这句替换,
重新启动系统后即可解决问题。
发布了83 篇原创文章 · 获赞 19 · 访问量 6万+

猜你喜欢

转载自blog.csdn.net/weixin_38148680/article/details/92795231