リモートデスクトップでTabキーが機能しない

リモートデスクトップでTabキーが機能しない

VPSでDebianを使用しています。 Windowsコンピュータのリモートデスクトップから接続しています。

PuTTYを使用して接続する場合、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

ベストアンサー1

おすすめ記事