Tab 键在远程桌面上不起作用

Tab 键在远程桌面上不起作用

我在 VPS 上使用 Debian。我正在从 Windows 计算机上的远程桌面连接到它。

如果我使用 PuTTY 连接,我可以使用 Tab 键就好,终端中的文件会自动完成。

如果我使用远程桌面进行连接,Tab 键在鼠标垫、gedit 或终端中不起作用。我可以使用 Tab 键和 Alt 键在打开的窗口之间切换,所以我知道 Debian 键盘布局没问题(我希望)...

我以 root 身份登录(我不想让权限阻止我,并且我希望所有用户都可以进行此更改)。我也曾与另一位用户尝试过此操作。

/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

/etc/配置文件

if [ -f /etc/bash_completion ]; then
  . /etc/bash_completion
fi

~/.bashrc

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
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

相关内容