diff options
author | Tim Hatch <tim@timhatch.com> | 2014-05-15 16:58:46 -0700 |
---|---|---|
committer | Tim Hatch <tim@timhatch.com> | 2014-05-15 16:58:46 -0700 |
commit | 919938e38d438dbcba6ed64423fd8f7375a0f59e (patch) | |
tree | f99125be99b3f070f6dc166ff80a38004ed72377 /tests/examplefiles/vimrc | |
parent | 583ca505dcf138b05b99ee4bee9a545dd9130356 (diff) | |
parent | 3c8f0aed8af0456fc7834a681fe17c792c7dca1d (diff) | |
download | pygments-919938e38d438dbcba6ed64423fd8f7375a0f59e.tar.gz |
Merged in jaingaurav2/pygments-main (pull request #351)
Fix some lines to be within 90 characters
Diffstat (limited to 'tests/examplefiles/vimrc')
-rw-r--r-- | tests/examplefiles/vimrc | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/examplefiles/vimrc b/tests/examplefiles/vimrc new file mode 100644 index 00000000..d2f9cd1b --- /dev/null +++ b/tests/examplefiles/vimrc @@ -0,0 +1,21 @@ +" A comment + +:py print "py" +::pyt print 'pyt' + pyth print '''pyth''' + : pytho print "pytho" +python print """python""" + + : : python<<E OF +print """my script""" + +def MyFunc(str): + """ My Function """ + print str +E OF + +let py = 42 +echo py + +let foo = 42 +echo foo |