sponsor Vim development Vim logo Vim Book Ad

changelog : Create ChangeLog entry fast

 script karma  Rating 0/4, Downloaded by 610  Comments, bugs, improvements  Vim wiki

created by
Roman Joost
 
script type
utility
 
description
The python script creates automatically a ChangeLog entry (GNU style).

 
install details
1. Create a directory python_plugins in your vim home and add the script.
2. Configure the script by setting the following python trickery up in
your $Home/.vimrc (thought thats an example!):

  py << PY

  import vim
  import sys

  # set the system path to the new directory
  sys.path.append('/home/roman/.vim/python-plugins')

  # now we can import the python module
  from utils import *

  # set the variables (you may want to leave alone the cvs_command and
  # svn_command
  name = \"Roman Joost\"
  email = \"<romanofski@gimp.org>\"
  cvs_command = 'cvs update -dP 2>&1 | grep -v \"Updating\"'
  svn_command = 'svn st'

  PY

3. You may want to bind the script to a key like:

  map <F2> :py make_cl_entry(name, email, cvs_command, svn_command)<CR>
 

rate this script Life Changing Helpful Unfulfilling 
script versions (upload new version)

Click on the package to download.

package script version date Vim version user release notes
changelog_02.tar.gz 0.2 2006-04-14 7.0 Roman Joost Initial upload
ip used for rating: 18.188.152.162

If you have questions or remarks about this site, visit the vimonline development pages. Please use this site responsibly.
Questions about Vim should go to the maillist. Help Bram help Uganda.
   
Vim at Github