rygwdn@gmail.com
741686603a
Added initial_indent to python context
2010-05-16 02:03:36 -03:00
Holger Rapp
5d116bac33
Merged with clearsnippets branch from Michael Henry. Only very minor changes on my part
2009-10-13 09:56:12 +02:00
Holger Rapp
31cd328236
Cleaned python 2.6 workaround up a bit
2009-09-17 14:26:57 +02:00
Holger Rapp
e12f7f3b9c
Fixes for python 2.6
2009-09-17 14:11:43 +02:00
Michael Henry
9e6b3737f8
Added <silent> to mappings to remove the distraction in the status line.
2009-09-17 05:53:25 -04:00
Michael Henry
ca560acd86
Removed spurious debug "print" statement.
2009-09-09 06:39:18 -04:00
Michael Henry
99e8842ca5
A "clearsnippets" feature
...
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
Holger Rapp
4948c5f7f7
Applied Michael Henrys patch for w option
2009-08-30 20:39:27 +02:00
Holger Rapp
441d0d21cf
Applied patch by Michael Henry to fix a bug that ultisnips doesn't exit at ts zero
2009-08-30 20:15:06 +02:00
Michael Henry
66ba0686d9
Snippet mode is now exited after final tabstop zero is encountered.
2009-08-25 19:18:06 -04:00
Michael Henry
9a19e9c573
Fixed problem with tab being ignored on failed snippet expansion.
2009-08-24 06:28:54 -04:00
Michael Henry
66d35419a4
Added support for snippet option "w" for word-boundary triggers.
2009-08-23 18:44:19 -04:00
Holger Rapp
40a0b46435
Fixed a bug with escaping of twopoints in conditional replaces
2009-08-17 17:20:19 +02:00
Holger Rapp
3cf98270de
Implemented listing of current snippets following the suggestion of jceb. This patch took another route than his suggestion, but should be functional equivalent
2009-08-16 20:55:08 +02:00
Holger Rapp
de9e35b8f7
Fixed stupid bug introduced in last revision
2009-08-16 18:50:14 +02:00
Holger Rapp
a96a6a31c9
Made trigger description include trigger by default. Patch suggested by jceb
2009-08-16 16:44:50 +02:00
Holger Rapp
c1462f3a02
_SnippetDictionary is no longer derived from dict since it makes no longer sense with the i option
2009-08-16 16:42:32 +02:00
Holger Rapp
cd0b859b62
Implemented i option (inword snippet expansion) along the line of the patch by jceb, also added his test cases
2009-08-16 16:34:54 +02:00
Holger Rapp
f4515daeee
Fixed bug 411010
2009-08-09 15:00:20 +02:00
Holger Rapp
43e60ebd57
Added support for extends keyword. With this it is simple to make inheritance trees of snippets for file types
2009-08-02 11:57:43 +02:00
Holger Rapp
1236d0ab86
Refactored parsing of Snippets files a bit to make it easier to extend the syntax
2009-08-02 11:29:42 +02:00
Holger Rapp
5eaed114db
Fixed 407144. Also added test cases for it
2009-08-02 10:35:23 +02:00
Holger Rapp
ac163993a9
Fixed expandtabs. Was broken at the beginning of the line. Now it is broken in the middle of the line
2009-07-30 08:08:36 +02:00
Holger Rapp
8fb1412791
- fixed a bug related to indentexpr. vim just has too many options
...
- expandtab and ts options are now taken into consideration when expanding tabs
2009-07-29 09:49:44 +02:00
Holger Rapp
274ef83833
Fixed bug #405502 . Also added a test case for it
2009-07-28 08:04:53 +02:00
Holger Rapp
cb458a0ce7
Attemp to work around SuperTabs <tab> claiming when installed in the home vim folder
2009-07-27 09:51:09 +02:00
Holger Rapp
e5058084c3
Fixed a missing self; a bug that slipped the tests
2009-07-26 23:03:59 +02:00
Holger Rapp
2f28d0ebb5
Fixed bug #404822 with a patch by jceb.
2009-07-26 17:42:40 +02:00
Holger Rapp
5ee8b842eb
Fixed some bugs related to char escaping in snippet definitions. fixes #401687
2009-07-22 12:08:21 +02:00
Holger Rapp
d0a50ae9d2
Made trigger keys configurable. Added support for setting forward jump and expand to the same key
2009-07-21 10:21:05 +02:00
Holger Rapp
c3dff61ef1
Fixed a small bug with string escaping in transformations. Went over the c snippets from TextMate, reworked them to work without any shell code (for compatibility sake)
2009-07-19 17:12:57 +02:00
Holger Rapp
47a7948526
Conditional replaces can now be nested
2009-07-19 16:44:29 +02:00
Holger Rapp
5a42d16499
Added snippets for snippets. Fixed a subtle bug with overwriting snippets
2009-07-19 12:56:10 +02:00
Holger Rapp
0943961479
Added support for b option. Some snippets can be defined to only be valid at the beginning of the line
2009-07-18 00:51:19 +02:00
Holger Rapp
c1494c6d83
A small refactoring
2009-07-18 00:14:20 +02:00
Holger Rapp
5d2a39a0c5
Fixed a inconsequent handling of indent: indent was different for recursive snippets then for the othermost snippet
2009-07-17 23:42:33 +02:00
Holger Rapp
93b3cc7126
Added support for overwriting of previous snippet definitions
2009-07-17 23:33:48 +02:00
Holger Rapp
e3ae328d8c
Added support for dotted ft syntax
2009-07-17 23:00:59 +02:00
Holger Rapp
e9c1dd597a
All done. Ready for intial release I guess
2009-07-16 18:08:32 +02:00
Holger Rapp
3e25a15469
Fixed the annoying bug
2009-07-16 17:49:35 +02:00
Holger Rapp
3f760eaebf
Only one critical known bug remaining in recursive expansion
2009-07-16 17:34:36 +02:00
Holger Rapp
118045a24a
Added more test cases for recursive tabstops, fixed some bugs that occured
2009-07-16 17:00:25 +02:00
Holger Rapp
94ee96cb31
Added vim module into imported python modules for python interpolation. box and bbox are now in the all.snippets and use the comment leader extracted from the commentstring option
2009-07-16 15:51:15 +02:00
Holger Rapp
8e46b5ba11
Beginning of recursive snippet expansion. This still has more bugs than a dog has fleas
2009-07-16 14:10:59 +02:00
Holger Rapp
318b2726ae
Fixed bug 400105 and 400114
2009-07-16 10:16:30 +02:00
Holger Rapp
717ae7586c
Fixed a stupid bug where == and bzr commit -m "Fixed a stupid bug where == and boxes -d shell= were used. Instead it should have been is and is not"= were used. Instead it should have been is and is not
2009-07-15 17:40:24 +02:00
Holger Rapp
001bb70975
Added support for vimscript interpolation
2009-07-15 16:28:33 +02:00
Holger Rapp
8b2c8274ec
Removed an unneeded debug output
2009-07-13 12:29:55 +02:00
Holger Rapp
79d342ddb4
Added support for interpolated python code
2009-07-13 11:36:13 +02:00
Holger Rapp
53f464e3a0
Fixed a bug with indenting in snippets. Autoindent is now supported
2009-07-12 17:23:39 +02:00
Holger Rapp
ba6e0662b5
Added the possibility to backspace over newlines in tabstops
2009-07-10 18:34:46 +02:00
Holger Rapp
86e7b3a1b5
The project now has a name: UltiSnips
2009-07-10 12:47:54 +02:00
Holger Rapp
5db7148f77
children -> childs everywhere
2009-07-10 12:29:40 +02:00
Holger Rapp
3bcbdac872
- Fixed a bug in parsing of definition files
...
- implemented shell code interpolation
- implemented multiline tabstop selection (needed for shell code interpolation)
2009-07-10 12:06:58 +02:00
Holger Rapp
8d9c04c675
Fixed a corner case in jumping: When a TS was selected and the next one was jumped too and was a TS with zero lenght, the cursor moved one too far
2009-07-10 09:35:21 +02:00
Holger Rapp
8a978ccdfc
Got Rid of _parse function. Parsing is now done in constructor of SnippetInstance
2009-07-10 09:02:55 +02:00
Holger Rapp
bdb61f9b80
Very minor refactoring
2009-07-10 08:58:18 +02:00
Holger Rapp
4cdf05d79c
All tests pass again
2009-07-10 08:49:53 +02:00
Holger Rapp
ade790cc60
Nearly fixed all bugs with Tab in DefText
2009-07-10 08:46:49 +02:00
Holger Rapp
447b800f70
Some bugs remain with tabstops in default text
2009-07-09 17:49:59 +02:00
Holger Rapp
307d822ffa
Halfway through with tabstop in default text
2009-07-09 17:04:57 +02:00
Holger Rapp
ccfa5d7a73
Expand is now <tab>, forward is <c-j> and backwards is <c-k>
2009-07-09 15:30:23 +02:00
Holger Rapp
82dffc5e1c
A little more cleanup in TextObjects
2009-07-09 14:35:52 +02:00
Holger Rapp
7953717f93
Got rid of ChangeableText. Cleaned TextObjects up a little
2009-07-09 14:33:06 +02:00
Holger Rapp
4acf520a94
Range is now Span
2009-07-09 14:24:43 +02:00
Holger Rapp
5935131a2a
Moved tab_selected also into SnippetManager
2009-07-09 14:17:35 +02:00
Holger Rapp
86a400df80
Input is now complelty handled in the SnippetManager
2009-07-09 14:13:13 +02:00
Holger Rapp
493c628346
chars_added was moved to SnipperManager
2009-07-09 14:06:37 +02:00
Holger Rapp
514e646491
TextObject.update() no longer takes arguments
2009-07-09 13:53:49 +02:00
Holger Rapp
0c3530ff29
Some refactoring
2009-07-09 13:49:15 +02:00
Holger Rapp
b7df58eab7
Removed some unneded cursor jumping
2009-07-09 10:44:57 +02:00
Holger Rapp
3b921ca515
Fixed a bug that prevented newlines in the first column in snippets
2009-07-09 10:43:45 +02:00
Holger Rapp
130706b915
TextObjects.py no longer needs the vim module. Now the VimBuffer also needs removing
2009-07-09 10:20:25 +02:00
Holger Rapp
384a8d563a
Got rid of the unintuitive accept_input variable. We now keep track of the current tabstop
2009-07-09 08:23:39 +02:00
Holger Rapp
920f6f6dbe
If a snippet doesn't define a zero Tabstop, it is now automatically added at it's end after parsing
2009-07-09 08:10:46 +02:00
Holger Rapp
448a0a30b9
there is now only one snippet active at all times, we no longer need an array for the current snippets
2009-07-09 07:55:25 +02:00
Holger Rapp
e0f689df41
Tab selection no longer takes place inside TabStop
2009-07-09 07:50:48 +02:00
Holger Rapp
4ae53348f7
Packaged all Files into one Module
2009-07-08 09:57:55 +02:00
Holger Rapp
d25ffbe78d
Removed two unneeded properties
2009-07-07 22:32:28 +02:00
Holger Rapp
2d6c5d8a76
Refactored the code in different files. This makes Stuff a bit more Readable
2009-07-07 22:28:09 +02:00
Holger Rapp
5dba8710f7
Added tests for tabstops in tabstops
2009-07-07 10:27:05 +02:00
Holger Rapp
c7da6bde0c
Pimped python snippets a bit
2009-07-06 23:09:53 +02:00
Holger Rapp
ddd4a574f4
Added support for transformations in default text of tabstops
2009-07-06 21:45:30 +02:00
Holger Rapp
97315a1add
Added tests for transformations in tabstop default texts. Fixed a todo in the code
2009-07-06 21:16:02 +02:00
Holger Rapp
ee882dd769
Fully implemented backspacing while tab is selected
2009-07-06 18:34:12 +02:00
Holger Rapp
8c8f3b9769
A first attempt to add the feature to backspace a default text away
2009-07-06 17:44:04 +02:00
Holger Rapp
fdc3c17d3f
Fixed the annoying bug when directly escaping after selecting a tabstop
2009-07-06 16:55:48 +02:00
Holger Rapp
02684225a8
Added tests for leaving snippets above or below
2009-07-06 16:43:24 +02:00
Holger Rapp
d8cd3f3d08
Snippets are now dropped when cursor reached /bin/zsh
2009-07-06 11:47:27 +02:00
Holger Rapp
892db435f0
Snippet was not poppoed if it didn't contain a zero tabstop at its end
2009-07-06 11:38:19 +02:00
Holger Rapp
52a91f17fe
Only jump to the end of a snippet when there is no Zero Tabstop defined
2009-07-06 11:35:18 +02:00
Holger Rapp
531a9c174d
Fixed a bug with indented single line snippets. A new line was added after them before
2009-07-06 10:40:07 +02:00
Holger Rapp
657af1a9cb
Added support for exiting snippet if moved out left or right
2009-07-06 10:31:12 +02:00
Holger Rapp
8c9b393fce
Change detection no longer needs to cache the complete buffer, only one char. Renamed Cursor to VimState because it also trackes BufferChanges
2009-07-06 08:22:46 +02:00
Holger Rapp
bf5b4c8290
Tabstops no longer receive text when user moved the cursor while inputting.
2009-07-05 22:25:01 +02:00
Holger Rapp
4a3821059d
Further refactored test by replacing cmd function through keys variable
2009-07-05 18:46:08 +02:00
Holger Rapp
58731e251d
Removed escape function int tests, added a constant for it
2009-07-05 13:20:58 +02:00
Holger Rapp
e5715d8d5e
Removed some oververbose debug output
2009-07-05 00:26:19 +02:00
Holger Rapp
f1f5bb1518
Snippet updates
2009-07-04 23:32:37 +02:00
Holger Rapp
87b0c199ae
A slight optimization
2009-07-04 23:15:37 +02:00