1

这就是 Vim 给我们一个匹配的列表“$ some maths symbles $”,当我们在输入“$”或“$ with more maths”后按下一些键时。

4

1 回答 1

0

我的解决方案(基于乳胶盒)用于在内联环境或编号环境中完成eq

那是你输入了两个 eq,你想再输入一次:

% two inline eqs
$hello$  $world$

% completion in inline env
$[part of "hello"]<ctrl-x><ctrl-o>

% completion in numbered env, 
% it's still triggered in the same way, but will leave eq without "$"
\begin{equation}
    $[part of "world"]<ctrl-x><ctrl-o>

编辑1

在 Latex-box 的官方 repo中,默认禁用此功能。

开关是let g:LatexBox_complete_inlineMath = 1

于 2012-04-15T03:59:02.747 回答