Louis Pilfold
ee4a8e936e
Merge pull request #710 from lgeorget/master
...
C++: Add a snippet to generate an entire .h skeleton
2016-04-07 11:24:37 +01:00
Laurent Georget
c133679866
C++: Add a snippet to generate an entire .h skeleton
2016-04-07 10:25:51 +02:00
Louis Pilfold
ae142259cd
Merge pull request #713 from lgeorget/fix-for-r
...
Fix for R snippets: Close the Else-If snippet
2016-04-07 09:03:32 +01:00
Laurent Georget
47f262c64c
r: Close the Else-If snippet
2016-04-06 22:34:54 +02:00
Louis Pilfold
016da6cc43
Merge pull request #705 from toogley/master
...
fix 'sbash' snippet interpreting newline and tab character
2016-03-21 17:28:15 +00:00
toogley
5590616c4a
fix 'sbash' snippet interpreting newline and tab character
...
This pullrequest: https://github.com/honza/vim-snippets/pull/704 introduced a
new bug of the 'sbash' snippet of Ultisnips. Python interpreted the \n and \t in
IFS=$'\n\t' and executed them instead of assigning it to the variable IFS.
2016-03-21 17:17:01 +01:00
Louis Pilfold
06168f1d08
Merge pull request #704 from toogley/master
...
make default settings for bash more reliable
2016-03-20 19:36:19 +00:00
toogley
65211115a0
make default settings for bash more reliable
...
see http://redsymbol.net/articles/unofficial-bash-strict-mode/ for explanation
why this might be useful.
2016-03-20 20:19:08 +01:00
Louis Pilfold
b66ede5e0f
Merge pull request #700 from vulder/master
...
Changed ifndef snippet to #ifndef
2016-03-15 09:47:48 +00:00
Florian Sattler
979b9cd49d
Changed ifndef snippet to #ifndef
...
This makes it consistent with the other C macro snippets
2016-03-15 10:38:49 +01:00
Louis Pilfold
f878039dd6
Elixir: Add exunit case snippet
2016-03-13 18:12:25 +00:00
Louis Pilfold
66b6d7c54d
Merge pull request #697 from shepherdsam/master
...
Added Anonymous Function (javascript) for UltiSnips. Supports $VISUAL.
2016-03-10 17:23:30 +00:00
Sam Shepherd
edc4eedf9a
Added Anonymous Function (javascript) for UltiSnips. Supports $VISUAL.
2016-03-10 10:09:21 -06:00
Louis Pilfold
743be1a6e0
Merge pull request #696 from Vzaa/master
...
Rust: remove semicolons from constructor returns
2016-03-09 12:17:48 +00:00
Vzaa
9f95287083
Rust: remove semicolons from constructor returns
2016-03-09 13:34:44 +02:00
Louis Pilfold
c2ffea6a91
Merge pull request #694 from ToruIwashita/master
...
Add aggregate_failures snippet for rspec
2016-03-09 09:30:03 +00:00
ToruIwashita
99d6cbfa0f
Add aggregate_failures snippet for rspec
2016-03-09 10:41:49 +09:00
Louis Pilfold
f8739670e9
Merge pull request #667 from Pompeu/master
...
sugest for simple modify snippet in node js
2016-03-08 09:38:14 +00:00
Louis Pilfold
9160fed96c
Merge pull request #693 from carlitux/master
...
Fix DecimalField on models
2016-03-08 09:37:53 +00:00
Luis Carlos Cruz
287de632d9
Add Default values on DecimaField
2016-03-07 22:39:27 -04:00
Luis Carlos Cruz
647e5c3811
Fix DecimalField on models
2016-03-07 22:37:02 -04:00
Louis Pilfold
aff4e7841b
Go ife
2016-03-06 16:01:51 +00:00
Louis Pilfold
5d4d1ba62b
Merge pull request #691 from IonicaBizauKitchen/autocmd
...
Use autocmd to load the snippets.
2016-03-04 15:24:45 +00:00
Ionică Bizău
6f5ea6e6d4
Keep the other solution too.
2016-03-04 16:04:19 +02:00
Ionică Bizău
6b455624e8
Use autocmd to load the snippets.
2016-03-04 12:54:59 +02:00
Louis Pilfold
e20b77d554
Go: Endless for loop
2016-03-03 12:02:43 +00:00
Louis Pilfold
83d331ffb6
Reduce duplication in Go
2016-03-03 11:56:37 +00:00
Louis Pilfold
879a90bd54
Merge pull request #689 from daa84/patch-1
...
fix macro snippet for rust
2016-03-03 10:18:31 +00:00
daa84
eb11eb41ec
fix macro snippet for rust
...
() replaced with {}
2016-03-03 12:06:54 +03:00
Louis Pilfold
732978ab16
Merge pull request #688 from lnxbil/patch-1
...
Infer migration class name
2016-02-19 14:02:03 +00:00
Andreas Steinel
4719006735
Infer migration class name
...
This small change infers the class name automatically
2016-02-19 14:52:13 +01:00
Louis Pilfold
122134f9fa
Merge pull request #687 from kernelrain/rust_fix
...
added missing `mut` modifier
2016-02-15 11:30:21 +00:00
Georgios Samaras
e895e60431
added missing modifier
2016-02-15 12:26:33 +01:00
Louis Pilfold
9674db7849
Merge pull request #683 from kernelrain/master
...
Fixing nested snippet for Rust `let`/`letm`
2016-02-15 11:13:48 +00:00
Louis Pilfold
37eecfccdd
Merge pull request #685 from RJ-Jesus/patch-1
...
Missed 'art'
2016-02-14 12:01:55 +00:00
Ricardo Jesus
0f25922960
Missed 'art'
...
Minor error but two '#' were missing on an header.
2016-02-13 21:43:50 +00:00
Georgios Samaras
1ac7329ff6
Fixed typo in rust fix
2016-02-12 22:09:12 +01:00
Georgios Samaras
db5f46439f
Fixed let
/letm
snippet for Rust files.
...
When expanding the `let` pattern, one would end up with something like "let I: I${4:type} = I;" (I representing the cursor jump marks), so the nested jump marks are inserted literally.
I fixed that unwanted behaviour by replacing the `let` and `letm` patterns by `let` (for immutable variable bindings with type inference), `lett` (for immutable variable bindings with explicit type annotation), `letm` (for mutable variable bindings with type inference) and `lettm` (for mutable variable bindings with explicit type annotation).
2016-02-12 22:05:04 +01:00
Louis Pilfold
0b025c6afc
Merge pull request #680 from andyw8/avoid-deprecated-rails
...
Avoid deprecated rails
2016-02-07 20:36:19 +00:00
Andy Waite
62e94f5b06
Remove snippet for deprecated find(:all)
...
This was removed in Rails 4.
http://blog.remarkablelabs.com/2012/12/what-s-new-in-active-record-rails-4-countdown-to-2013
2016-02-07 20:32:22 +00:00
Andy Waite
e97e0d097c
Remove respond_with
snippet
...
This is no longer part of Rails, it's now handled by the responders gem.
http://weblog.rubyonrails.org/2014/8/20/Rails-4-2-beta1/
2016-02-07 20:31:05 +00:00
Andy Waite
16e922e7fe
Use update
rather than `update_attributes
...
`update_attributes` is deprecated:
https://github.com/rails/rails/pull/6739
2016-02-07 20:28:55 +00:00
Louis Pilfold
850bfc7ada
Merge pull request #679 from andyw8/change-rails-snippet-triggers
...
Change Rails snippet triggers
2016-02-07 15:44:46 +00:00
Andy Waite
31b2fe023a
Change Rails snippet triggers
...
At present, `cla` maps to both Create Controller Class and Create
Functional Test class.
Using `cla` for creating a controller seems overly-general, since we may
want triggers for other types of classes, e.g. models. So I propose
changing this to `clac`.
And to remove ambiguity, I propose using `clact` for the controller test.
2016-02-07 14:54:19 +00:00
Louis Pilfold
3a55cad702
Merge pull request #660 from melko/master
...
Add verilog snippets and refactor systemverilog removing duplicates
2016-02-04 12:55:24 +00:00
Louis Pilfold
e73c5b8036
Merge pull request #676 from blueyed/python-debuggers
...
python: do not use multiple commands on a single line; add bpdb
2016-01-30 18:06:25 +00:00
Daniel Hahler
e8b7ebb913
python: fix multiple commands on a single line; add bpdb
...
Otherwise style checkers will usually complain about it, and e.g.
'flake8' cannot be made to ignore it with '# noqa' at the end.
I also adds the "bpdb" snippet, and only defines them in the snipmate
format, not UltiSnips'.
Therefore "ipy" is only available as "iem" now.
Ref: https://github.com/honza/vim-snippets/pull/675#issuecomment-176840647
2016-01-30 14:43:06 +01:00
Louis Pilfold
ca361c43f9
Merge pull request #668 from phux/hotfix/php-array-snippet-only-in-beginning
...
PHP: trigger php 'array' snippet only for beginning of line.
2016-01-29 18:10:16 +00:00
Louis Pilfold
0fc7fd1181
Merge pull request #672 from kevinkoltz/master
...
Remove extra whitespace
2016-01-17 03:34:09 +00:00
Kevin Koltz
4f434d6510
Remove extra whitespace
...
Prevents adding empty lines while using snipMate.vim
2016-01-16 14:19:37 -06:00