<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,16 @@
+PySmell v0.3
+
+Added simple type-inferencing when inside classes, hardcoded to &quot;self&quot;. It will present methods and properties
+of current and parent classes (but not built-in types). It only works with relative imports for now.
+When you auto-complete right after a function/method call's opening parenthesis, the arguments will be filled in.
+You can select out of seven matching behaviours - look in pysmell.vim for possible options.
+Big improvements on correctness of PYSMELLTAGS files.
+
+
+Bugfix: Set Vim to display duplicate arguments
+Bugfix: change name of omnifunc so to not clash with built-in python omnicompletion
+
+
 PySmell v0.2
 
 Added support for nested packages</diff>
      <filename>CHANGELOG</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@ The first target is Vim, because that's what I'm using and because its completio
 
 ##Download and Installation
 
-PySmell's code is available at [GitHub](http://github.com/orestis/pysmell/tree/v0.2). You can click 'Download' to get it as a zip/tar if you don't have git installed.
+PySmell's code is available at [GitHub](http://github.com/orestis/pysmell/tree/v0.3). You can click 'Download' to get it as a zip/tar if you don't have git installed.
 
 Extract and drop the pysmell package somewhere in your PYTHONPATH. Distutils coming soon!
 
@@ -15,7 +15,7 @@ Extract and drop the pysmell package somewhere in your PYTHONPATH. Distutils com
 To generate a PYSMELLTAGS file, use:
 
     cd /root/of/project
-    python /dir/of/pysmelltags.py
+    python /dir/of/pysmelltags.py .
 
 If you want to specifically include or exclude some files or directories (eg. tests), you can use:
     python /dir/of/pysmelltags.py [Package Package File File ...] [-x Excluded Excluded ...]
@@ -39,6 +39,9 @@ To use PySmell omnicompletion from inside Vim, you have to have:
 1. Python support
 2. The pysmell package in your PYTHONPATH (sometimes Vim is silly about this)
 3. Source pysmell/pysmell.vim
+4. :set omnifunc=pysmell#Complete
+Note: If you want to always use pysmell for python, do:
+    autocmd FileType python set omnifunc=pysmell#Complete
 
 You can then use ^X^O to invoke Vim's omnicompletion.
 </diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,13 @@
+# matchers.py
+# Original author: Krzysiek Goj
+# Copyright (C) 2008 Orestis Markou
+# All rights reserved
+# E-mail: orestis@orestis.gr
+
+# http://orestis.gr
+
+# Released subject to the BSD License 
+
 import re
 try:
     all</diff>
      <filename>matchers.py</filename>
    </modified>
    <modified>
      <diff>@@ -4,11 +4,23 @@
 &quot; All rights reserved
 &quot; E-mail: orestis@orestis.gr
 
-&quot; pysmell v0.2
+&quot; pysmell v0.3
 &quot; http://orestis.gr
 
 &quot; Released subject to the BSD License 
 
+&quot; Options:
+&quot;   g:pysmell_debug : set to 1 and create a PYSMELL_DEBUG buffer. Info will get appended there.
+&quot;   g:pysmell_matcher : one of the following, listed from stricter to fuzzier:
+&quot;        'case-sensitive'
+&quot;        'case-insensitive'     &quot;default
+&quot;        'camel-case'
+&quot;        'camel-case-sensitive'
+&quot;        'smartass'
+&quot;        'fuzzy-ci'
+&quot;        'fuzzy-cs'
+                
+
 if !has('python')
     echo &quot;Error: Required vim compiled with +python&quot;
     finish</diff>
      <filename>pysmell.vim</filename>
    </modified>
    <modified>
      <diff>@@ -14,7 +14,7 @@ from codefinder import ModuleDict, processFile
 from idehelper import findRootPackageList
 from pprint import pprint
 
-__version__ = &quot;v0.2&quot;
+__version__ = &quot;v0.3&quot;
 
 source = &quot;&quot;&quot;
 class Aclass(object):</diff>
      <filename>pysmelltags.py</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,4 @@
 # vimhelper.py
-# Companion to pysmell.vim
 # Copyright (C) 2008 Orestis Markou
 # All rights reserved
 # E-mail: orestis@orestis.gr</diff>
      <filename>vimhelper.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>9916bfd0a3dbfeaa52b5be4b9fec79663274a3fa</id>
    </parent>
  </parents>
  <author>
    <name>Orestis Markou</name>
    <email>orestis@orestis.gr</email>
  </author>
  <url>http://github.com/orestis/pysmell/commit/f8f310023536c4735cf9ac00f0e27092a1adc614</url>
  <id>f8f310023536c4735cf9ac00f0e27092a1adc614</id>
  <committed-date>2008-09-09T17:23:09-07:00</committed-date>
  <authored-date>2008-09-09T17:23:09-07:00</authored-date>
  <message>Documentation and version bump.</message>
  <tree>7f8f450d5e2df002931a169936fb80edd965a7c6</tree>
  <committer>
    <name>Orestis Markou</name>
    <email>orestis@orestis.gr</email>
  </committer>
</commit>
