在 Vim-latex 套装模板上创建模板

在 Vim-latex 套装模板上创建模板

我对在 vim-LaTeX 套件上创建模板有疑问。
我将模板文件放在

/usr/share/vim/addons/ftplugin/latex-suite/templates/

内容为

<+      +>      !comp!  !exe!
%        File: !comp!expand("%:p:t")!comp!
%     Created: !comp!strftime("%a %b %d %I:00 %p %Y ").substitute(strftime('%Z'), '\<\(\w\)\(\w*\)\>\(\W\|$\)', '\1', 'g')!comp!
% Last Change: !comp!strftime("%a %b %d %I:00 %p %Y ").substitute(strftime('%Z'), '\<\(\w\)\(\w*\)\>\(\W\|$\)', '\1', 'g')!comp!
%
\documentclass[a4paper]{article}
\usepackage[top=1in, bottom=1in, left=1in, right=1in]{geometry}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{graphicx}
\graphicspath{{<++>}}
\usepackage{fancyhdr}
\pagestyle{fancy}
\newcommand{\norm}[1]{\lVert#1\rVert}
\begin{document}
\lhead{<++>}
\rhead{<++>}
\cfoot{\thepage}
<++>
\end{document}

然后我在目录中创建了它的软链接:

/var/lib/vim/addons/ftplugin/latex-suite/templates/

如果一切顺利,在 vim 上创建一个新的 tex 文件并输入

:TTemplate

在命令行上,我应该得到:
带有文件名的文件,
带有创建日期和时间的创建时间,
带有上次更改的日期和时间的上次更改。
并且起始光标应该在 \lhead{ 光标在此处 } 上

但是,它似乎不会显示任何 vim 格式的日期,并且光标的初始位置也不在我想要的位置。

这个问题有解决办法吗?

我正在使用 ubuntu 14.04,vim-latex 套装。
提前致谢。

答案1

事实证明,空格是制表符,而不是空格。
我在 stackoverflow 上发表的帖子 有更多信息。谢谢。

相关内容