Holger Rapp
1095c07e13
Only 2 tests are failing
2012-01-10 18:11:26 +01:00
Holger Rapp
d72eb587f6
22/339 tests are failing
2012-01-10 18:11:02 +01:00
Holger Rapp
1653eb89ea
UltiSnips loads in python3 now, but does not work so far
2012-01-10 14:16:25 +01:00
Holger Rapp
089e50817f
The name is Sanders not Sander. Sorry
2012-01-09 12:27:11 +01:00
Holger Rapp
4ec7483189
One more comment.
2012-01-08 21:59:17 +01:00
Holger Rapp
7d860d6470
F-uped with the README.rst. Once more.
2012-01-08 21:58:12 +01:00
Holger Rapp
91fe432d27
Promote second screencast.
2012-01-08 21:14:31 +01:00
Holger Rapp
a08cd7bfbd
Didn't handle ~ as homedir in search paths correctly
2012-01-05 17:00:25 +01:00
Holger Rapp
5a2ca0a6ee
Added documentation for reusing of python functions
2011-12-31 15:10:54 +01:00
Holger Rapp
4309940444
Added a globals snippet for snippets files
2011-12-31 15:06:48 +01:00
Holger Rapp
a54efb9f52
Added a link to a screencast on the github readme
2011-12-30 21:05:01 +01:00
Holger Rapp
14c307178d
Update ChangeLog
2011-12-30 08:52:08 +01:00
Holger Rapp
d02def16d3
Mention GitHub and launchpad in README
2011-12-30 08:29:36 +01:00
Holger Rapp
d30aa5d7c1
Fixed ignored list in .gitignore
2011-12-30 08:20:54 +01:00
Holger Rapp
e711786d82
Added a quick README for github. Fixed ignored list in .gitignore
2011-12-30 08:20:44 +01:00
Holger Rapp
3a025ce9cd
Added Cody Frazer as contributor
2011-12-30 08:16:43 +01:00
Cody Frazer
da3680ec6d
Ignore Vim swap files.
2011-12-30 08:14:03 +01:00
Cody Frazer
450ba8e038
Do not track compiled python files.
2011-12-30 08:13:19 +01:00
Holger Rapp
f378d3dbc7
Fixed slugginess with lots of recursive snippets
2011-12-29 21:35:10 +01:00
Holger Rapp
3237960a75
Move python online commands into vim functions for better profiling
2011-12-29 21:05:19 +01:00
Holger Rapp
cebf11eda0
Better handling of unicode in snippet definitions and names
2011-12-26 08:44:13 +01:00
Holger Rapp
3094d79e61
Updated ruby snippets by Aldis Berjoza
2011-11-16 21:47:23 +01:00
Holger Rapp
2c6d5bd070
New ruby snippets by Aldis Berjoza
2011-11-15 10:28:50 +01:00
Holger Rapp
e82514221a
New rails snippet by Aldis Berjoza (graudeejs)
2011-11-11 10:32:11 +01:00
Holger Rapp
5f04f3e0cf
New Ruby on Rails translation snippet by graudeejs (graudeejs)
2011-10-20 09:20:32 +02:00
Holger Rapp
aae12ec39c
Updated ChangeLog
2011-09-24 22:55:55 +02:00
Holger Rapp
ee000f5a41
Added an xhtml snippets file which only extends html but defines no new snippets
2011-09-23 18:07:02 +02:00
Holger Rapp
4e30504862
Merged puppet and go snippets by Miek Gieben
2011-09-22 09:41:31 +02:00
Miek Gieben
34d7648265
Added a snippet files for Go (www.golang.org) and
...
Puppet (www.puppetlabs.com)
2011-09-21 16:31:09 +02:00
Holger Rapp
499ac4f4bc
Fixed bug with mirrors of tabstops-in-tabstops
2011-09-12 09:08:25 +02:00
Holger Rapp
4c6a614dd3
Fix a off-by-one error in selecting 0-length tabstop. Only surfaces with recent vim versions
2011-09-01 18:03:06 +02:00
Holger Rapp
f21386e75d
Forgot to add Rico to the contributors list
2011-08-29 13:14:14 +02:00
Holger Rapp
e848b2b3c0
Merged runtimepath patch by Rico Cruz
2011-08-29 13:12:24 +02:00
Rico Sta. Cruz
dcc286b856
Add the g:UltiSnipsDontReverseSearchPath option
2011-08-29 03:47:31 +08:00
Holger Rapp
bcfb52b00a
removed non ascii char from one snippet name. Patch by Thanatermesis
2011-08-18 15:06:35 +02:00
Holger Rapp
84e70f5129
New Python snippets by Georgi Valkov
2011-08-02 11:22:54 +02:00
Holger Rapp
24025a78a7
Jinja2 snippets by Georgi Valkov
2011-08-02 11:09:03 +02:00
Holger Rapp
795d38ba0e
Removed some random spaces from python snippets, added self if a function is indended
2011-08-02 11:02:05 +02:00
Holger Rapp
b5ed08343f
Split tex snippets into math and other because some filetypes only use math mode (i.e. rst)
2011-08-02 11:01:19 +02:00
Georgi Valkov
9a44d6dfda
pyunit testcase snippet
2011-08-02 01:42:05 +03:00
Georgi Valkov
c188127073
Add 'special' method snippets
...
numeric -> methods for emulating a numeric type
repr -> methods implementing string representation
cmp -> methods implementing rich comparison
desc -> methods implementing descriptors
attr -> methods for customizing attribute access
context -> context manager methods
contain -> methods for emulating a container type
2011-08-02 01:41:26 +03:00
Georgi Valkov
aa3bce2a43
Add 'class with slots' snippet
2011-08-02 01:41:08 +03:00
Georgi Valkov
57b1273475
Refactoring common class/def snippet code
...
* Common snippet code was broken down into separate functions.
* Simplified logic flow at certain points (at the expense of more
function calls).
* Int instead of string comparison when choosing a docstring style.
* Do not up-call object.__init__(self).
* Add newline between parent constructor calls and auto-arg list.
2011-08-02 01:39:23 +03:00
Georgi Valkov
e82133bdce
A fairly comprehensive Jinja2 snippets collection
2011-08-02 01:26:51 +03:00
Holger Rapp
6c855d1280
Removed some non ascii chars from tex descriptions
2011-07-27 14:10:27 +02:00
Holger Rapp
ecd2671541
Corrected usage of anonymous snippets
2011-07-27 12:29:55 +02:00
Holger Rapp
f29c3ac63a
Added two more tests I wrote while searching a bug that wasn't even there
2011-07-27 12:29:42 +02:00
Holger Rapp
0711c6b75a
Only expand r on word boundaried, not also in words
2011-07-27 12:29:12 +02:00
Holger Rapp
6975711477
Added a small hint to the Documentation how to use Anonymous snippets for fun and profit
2011-07-26 16:21:57 +02:00
Holger Rapp
72ed530746
Anonymous triggers with empty trigger string where not expanded after whitespaces.
2011-07-26 16:21:39 +02:00