使用 vimblog 来写 wordpress 文章

在台式机上有配过,用过几次,后来写博客少了,用 vim 来写就更少了。现在再在笔记本上配一次,备忘一下。

在 vim 中写(或者说管理)wordpress 的插件应该不少,至少随便找到的有 Vimpressvimblog ,这里用的是后者。

使用方法很简单:

  • 下载 vimblog.vim 文件,并放到 vim 的根目录下,如:~/.vim/
  • 修改 vimblog.vim 文件,在里面的 get_personal_data 函数中填上博客的信息,如:login(用户名)、passwd(密码)和 site(博客地址,不带 http://),别的参数一般不用修改。
  • 修改 vim 配置文件(.vimrc 或 gvimrc 等),在里面添加以下代码:
if !exists('*Wordpress_vim')
    runtime vimblog.vim
endif
  • 测试:vim 里运行 :Blog rp 来获取最近的 10 篇文章,有输出就 OK 了,没的话重新看下是否写错了如博客信息等。

包含的功能有:

Usage is :Blog option [arg]
 switches:
  - rp [x]   => show recent [x] posts
  - gp id    => get post with identification id
  - np       => create a new post
  - publish  => publish an edited/new post
  - draft    => save edited/new post as draft
  - gc       => get the list of categories
  - del id   => delete post with identification id