dousilie9522 2018-06-03 08:37
浏览 122
已采纳

在emacs中的golang中自动完成

I'm aware a lot is involved in getting autocomplete to work in emacs, including:

  • auto-complete
  • company
  • flymake

I am not sure which components are responsible for which aspects. What is the package that when I start typing...

fmt.P

Would finish with

fmt.Println

?

I believe I have company as my auto-complete, and at present, if I start:

fm

It finishes fmt, but

fmt.

Produces nothing, and

fmt.P

Produces

fmt.package 

Which is entirely wrong. What package should I investigate to understand what is going on?

  • 写回答

1条回答 默认 最新

  • dongzhiji0814 2018-06-03 10:55
    关注

    Autocomplete, company-mode, flymake, oh my. I recommend you uninstall all of the above and use Emacs' native completion instead:

    1. install gocode and make sure the binary is in Emacs' PATH;
    2. install the go-complete package in Emacs (I got it from melpa, but you may prefer to install it manually);
    3. add the following to your .emacs:

      (add-hook 'completion-at-point-functions 'go-complete-at-point)
      
    4. press M-TAB in a go-mode buffer.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 某东JD算法逆向算法
  • ¥15 求GCMS辅导数据分析
  • ¥30 SD中的一段Unet下采样代码其中的resnet是谁跟谁进行残差连接
  • ¥15 Unet采样阶段的res_samples问题
  • ¥60 Python+pygame坦克大战游戏开发实验报告
  • ¥15 R语言regionNames()和demomap()无法选中中文地区的问题
  • ¥15 Open GL ES 的使用
  • ¥15 我如果只想表示节点的结构信息,使用GCN方法不进行训练可以吗
  • ¥15 QT6将音频采样数据转PCM
  • ¥15 下面三个文件分别是OFDM波形的数据,我的思路公式和我写的成像算法代码,有没有人能帮我改一改,如何解决?
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部