美文网首页超级工具大集合随缘
基于 Company 的英文助手

基于 Company 的英文助手

作者: ManateeLazyCat | 来源:发表于2018-08-08 00:45 被阅读733次

    Emacs 英文补全助手

    十几年的 Predictive 粉丝, 这个插件帮我这个英语渣渣编写各种英文邮件和文档和国外的开发者交流.

    一个月前基于 Company 新写了一个英文补全的插件: Company English Helper
    效果和性能要比Predictive好很多, 不但可以补全英文单词, 还可以实时显示中文翻译, 甚至可以补全英文句子.

    英文补全助手的效果图如下:

    company english helper

    安装方法

    1. 下载文件 company-english-helper.elcompany-english-helper-data.el , 放到目录 ~/elisp/ 下 (也可以放到你自己的其他目录)

    2. 在 ~/.emacs 中添加以下配置

    (add-to-list 'load-path (expand-file-name "~/elisp"))
    (require 'company-english-helper)
    
    1. 执行命令 `toggle-company-english-helper' , 就可以在Emacs中飞速的编写英文文档了.

    自定义词典

    默认的词典是从 stardict KDict 这个词典转换出来的, 包括11万单词.
    如果你不喜欢默认的词库, 可以用我写的 stardict 词典转换库 stardict.py 来转换你喜欢的 stardict 词典.

    python ./stardict.py stardict-kdic-ec-11w-2.4.2/kdic-ec-11w.ifo
    

    把 stardict-kdic-ec-11w-2.4.2/kdic-ec-11w.ifo 替换成你喜欢的 stardict 字典, 命令执行完成后, 会自动生成新的 company-english-helper-data.el 文件

    相关文章

      网友评论

      • 繁华的森林:把配置文件放在了.emacs-config/company下,在.emacs文件中也添加了 (require 'company-english-helper),报这个错找不到文件的错:Warning (initialization): An error occurred while loading `/home/cao/.emacs':

        File error: Cannot open load file, 没有那个文件或目录, company-english-helper

        To ensure normal operation, you should investigate and remove the
        cause of the error in your initialization file. Start Emacs with
        the `--debug-init' option to view a complete error backtrace.
        ManateeLazyCat:请仔细读一遍我的文档
      • LanceAdd:Company只有emcas才有吗
        LanceAdd:@lemon_wonder 好吧,是我想多了,还以为可以移植的
        lemon_wonder:这是emacs的插件啊,用elisp写的

      本文标题:基于 Company 的英文助手

      本文链接:https://www.haomeiwen.com/subject/aenzvftx.html