公司模式可以在组织模式下完成我的代码吗?

时间:2016-06-01 09:03:10

标签: emacs org-mode

我需要在org-mode中编辑源代码。

#+BEGIN_SRC cpp
void elimDups(vector<string> &words)
{
    sort(words.begin(), words.end());
    auto end_unique = unique(words.begin(), words.end());
    words.erase(end_unique, words.end());
}
#+END_SRC

在代码块中,没有代码完成。

是否可以在org-mode中的代码块中使用代码完成?

enter image description here

1 个答案:

答案 0 :(得分:2)

您可以C-c '使用相应的主要模式打开新窗口。 然后你就完成了代码。