zoukankan      html  css  js  c++  java
  • Fcitx不显示候选词框的解决办法

    在非KDE桌面环境下,如果安装了fcitx-module-kimpanel,可能会导致Fcitx输入中文时不显示候选词框,移除该组件,然后重启Fcixt

     

    $ sudo apt remove fcitx-module-kimpanel

     

    http://www.cnblogs.com/canwyq/p/6418927.html

     

    =========================================================

     

    Ubuntu安装Fcitx以及Fcitx输入中文不显示候选词框的解决办法

     

    一、安装Fcitx

    1. 安装Fcitx所需组件

    $ sudo apt install fcitx fcitx-tools fcitx-config* fcitx-frontend* fcitx-module* fcitx-ui-* presage

    2. 移除多余的组件(仅针对非KDE桌面)

    因为上面的安装命令为了方便使用了通配符安装,所以会多安装一个fcitx-module-kimpanel,这个组件可能导致在非KDE桌面环境下Fcitx输入中文时不显示候选词框,如果是KDE桌面则无需移除

    $ sudo apt remove fcitx-module-kimpanel
    3. 根据需要安装一个或多个输入法
    $ sudo apt install fcitx-pinyin            # 拼音
    $ sudo apt install fcitx-sunpinyin         # sun拼音
    $ sudo apt install fcitx-googlepinyin      # google拼音
    $ sudo apt install fcitx-table-wubi-large  # 五笔

    二、Fcitx输入中文时不显示候选词框的解决办法

    如上所述,在非KDE桌面环境下,如果安装了fcitx-module-kimpanel,可能会导致Fcitx输入中文时不显示候选词框,移除该组件,然后重启Fcixt。

    $ sudo apt remove fcitx-module-kimpanel

    http://blog.csdn.net/qq_21397217/article/details/52447263

  • 相关阅读:
    C++多态性(静多态和动多态)
    根据二叉树的后序遍历以及中序遍历还原二叉树
    哈希表
    *********** 复习算法复杂度,基础 ************
    C++虚函数表解析
    为什么需要auto_ptr_ref
    python未修辞的计时器
    python删除一个非空文件夹竟然如此简单
    python模拟163登陆获取邮件列表
    wxpython制作eml文件阅读器
  • 原文地址:https://www.cnblogs.com/xcb0730/p/6815370.html
Copyright © 2011-2022 走看看