Skip to content

Commit

Permalink
Live dangerously, update all submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalresistor committed Feb 25, 2015
1 parent 30fc2ce commit 905cb8a
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion vim/bundle/command-t
Submodule command-t updated 54 files
+2 −0 .gitignore
+2 −2 .gitmodules
+4 −20 Rakefile
+12 −0 appstream/vim-command-t.metainfo.xml
+35 −32 autoload/commandt.vim
+0 −10 compile-test.sh
+175 −27 doc/command-t.txt
+0 −25 multi-spec.sh
+7 −10 plugin/command-t.vim
+17 −0 ruby/command-t.rb
+76 −74 ruby/command-t/controller.rb
+12 −1 ruby/command-t/extconf.rb
+12 −6 ruby/command-t/finder.rb
+8 −10 ruby/command-t/finder/buffer_finder.rb
+22 −24 ruby/command-t/finder/file_finder.rb
+8 −10 ruby/command-t/finder/jump_finder.rb
+21 −23 ruby/command-t/finder/mru_buffer_finder.rb
+18 −20 ruby/command-t/finder/tag_finder.rb
+8 −19 ruby/command-t/match.c
+73 −59 ruby/command-t/match_window.rb
+5 −0 ruby/command-t/mru.rb
+17 −0 ruby/command-t/path_utilities.rb
+19 −19 ruby/command-t/prompt.rb
+7 −3 ruby/command-t/scanner.rb
+14 −16 ruby/command-t/scanner/buffer_scanner.rb
+88 −58 ruby/command-t/scanner/file_scanner.rb
+10 −0 ruby/command-t/scanner/file_scanner/file_limit_exceeded.rb
+12 −19 ruby/command-t/scanner/file_scanner/find_file_scanner.rb
+34 −0 ruby/command-t/scanner/file_scanner/git_file_scanner.rb
+41 −44 ruby/command-t/scanner/file_scanner/ruby_file_scanner.rb
+17 −24 ruby/command-t/scanner/file_scanner/watchman_file_scanner.rb
+22 −24 ruby/command-t/scanner/jump_scanner.rb
+20 −21 ruby/command-t/scanner/mru_buffer_scanner.rb
+23 −24 ruby/command-t/scanner/tag_scanner.rb
+22 −0 ruby/command-t/scm_utilities.rb
+4 −15 ruby/command-t/settings.rb
+3 −2 ruby/command-t/stub.rb
+1 −1 ruby/command-t/util.rb
+57 −29 ruby/command-t/vim.rb
+0 −20 ruby/command-t/vim/path_utilities.rb
+4 −2 ruby/command-t/vim/screen.rb
+11 −9 ruby/command-t/vim/window.rb
+1 −15 ruby/command-t/watchman.c
+8 −3 spec/command-t/controller_spec.rb
+3 −4 spec/command-t/finder/buffer_finder_spec.rb
+2 −3 spec/command-t/finder/file_finder_spec.rb
+19 −2 spec/command-t/matcher_spec.rb
+3 −4 spec/command-t/scanner/buffer_scanner_spec.rb
+19 −8 spec/command-t/scanner/file_scanner/ruby_file_scanner_spec.rb
+2 −3 spec/command-t/scanner/file_scanner_spec.rb
+14 −0 spec/command-t/vim_spec.rb
+31 −14 spec/command-t/watchman/utils_spec.rb
+2 −0 spec/spec_helper.rb
+0 −41 spec/vim_formatter.rb
2 changes: 1 addition & 1 deletion vim/bundle/html5.vim
2 changes: 1 addition & 1 deletion vim/bundle/nerdtree
2 changes: 1 addition & 1 deletion vim/bundle/ultisnips
Submodule ultisnips updated 77 files
+17 −0 .travis.yml
+3 −1 README.md
+6 −1 autoload/UltiSnips.vim
+5 −0 autoload/UltiSnips/bootstrap.vim
+1 −0 autoload/UltiSnips/map_keys.vim
+61 −10 doc/UltiSnips.txt
+6 −0 ftdetect/UltiSnips.vim
+21 −0 ftplugin/snippets.vim
+1 −0 pylintrc
+85 −78 pythonx/UltiSnips/_diff.py
+88 −58 pythonx/UltiSnips/_vim.py
+23 −31 pythonx/UltiSnips/compatibility.py
+17 −11 pythonx/UltiSnips/debug.py
+15 −12 pythonx/UltiSnips/indent_util.py
+4 −2 pythonx/UltiSnips/position.py
+52 −38 pythonx/UltiSnips/snippet/definition/_base.py
+3 −1 pythonx/UltiSnips/snippet/definition/snipmate.py
+2 −0 pythonx/UltiSnips/snippet/definition/ultisnips.py
+13 −7 pythonx/UltiSnips/snippet/parsing/_base.py
+63 −40 pythonx/UltiSnips/snippet/parsing/_lexer.py
+10 −4 pythonx/UltiSnips/snippet/parsing/snipmate.py
+16 −6 pythonx/UltiSnips/snippet/parsing/ultisnips.py
+72 −28 pythonx/UltiSnips/snippet/source/_base.py
+23 −18 pythonx/UltiSnips/snippet/source/_snippet_dictionary.py
+2 −0 pythonx/UltiSnips/snippet/source/added.py
+26 −40 pythonx/UltiSnips/snippet/source/file/_base.py
+3 −2 pythonx/UltiSnips/snippet/source/file/_common.py
+36 −25 pythonx/UltiSnips/snippet/source/file/snipmate.py
+47 −34 pythonx/UltiSnips/snippet/source/file/ultisnips.py
+162 −101 pythonx/UltiSnips/snippet_manager.py
+82 −56 pythonx/UltiSnips/test_diff.py
+16 −4 pythonx/UltiSnips/test_position.py
+14 −9 pythonx/UltiSnips/text.py
+53 −39 pythonx/UltiSnips/text_objects/_base.py
+2 −1 pythonx/UltiSnips/text_objects/_escaped_char.py
+8 −2 pythonx/UltiSnips/text_objects/_mirror.py
+43 −27 pythonx/UltiSnips/text_objects/_python_code.py
+11 −6 pythonx/UltiSnips/text_objects/_shell_code.py
+24 −13 pythonx/UltiSnips/text_objects/_snippet_instance.py
+12 −5 pythonx/UltiSnips/text_objects/_tabstop.py
+31 −20 pythonx/UltiSnips/text_objects/_transformation.py
+4 −1 pythonx/UltiSnips/text_objects/_viml_code.py
+13 −7 pythonx/UltiSnips/text_objects/_visual.py
+37 −20 pythonx/UltiSnips/vim_state.py
+11 −7 syntax/snippets.vim
+0 −3,554 test.py
+0 −0 test/__init__.py
+24 −0 test/constant.py
+67 −0 test/test_AnonymousExpansion.py
+243 −0 test/test_Chars.py
+34 −0 test/test_Completion.py
+89 −0 test/test_Editing.py
+73 −0 test/test_Expand.py
+84 −0 test/test_Fixes.py
+51 −0 test/test_Folding.py
+157 −0 test/test_Format.py
+460 −0 test/test_Interpolation.py
+43 −0 test/test_ListSnippets.py
+272 −0 test/test_Mirror.py
+83 −0 test/test_Movement.py
+72 −0 test/test_MultipleMatches.py
+241 −0 test/test_ParseSnippets.py
+96 −0 test/test_Plugin.py
+265 −0 test/test_Recursive.py
+125 −0 test/test_Selection.py
+149 −0 test/test_SnipMate.py
+351 −0 test/test_SnippetOptions.py
+158 −0 test/test_SnippetPriorities.py
+366 −0 test/test_TabStop.py
+248 −0 test/test_Transformation.py
+170 −0 test/test_UltiSnipFunc.py
+204 −0 test/test_Visual.py
+17 −0 test/util.py
+271 −0 test/vim_interface.py
+466 −0 test/vim_test_case.py
+174 −0 test_all.py
+45 −32 utils/get_tm_snippets.py
2 changes: 1 addition & 1 deletion vim/bundle/vim-commentary
2 changes: 1 addition & 1 deletion vim/bundle/vim-git
Submodule vim-git updated 1 files
+5 −5 ftdetect/git.vim
2 changes: 1 addition & 1 deletion vim/bundle/vim-repeat
Submodule vim-repeat updated 1 files
+23 −9 autoload/repeat.vim
2 changes: 1 addition & 1 deletion vim/bundle/vim-snippets
Submodule vim-snippets updated 62 files
+1 −0 .gitignore
+41 −40 README.md
+280 −0 UltiSnips/ada.snippets
+20 −6 UltiSnips/all.snippets
+0 −1 UltiSnips/c.snippets
+121 −29 UltiSnips/css.snippets
+0 −168 UltiSnips/elixir.snippets
+30 −22 UltiSnips/erlang.snippets
+4 −59 UltiSnips/eruby.snippets
+7 −2 UltiSnips/haskell.snippets
+5 −0 UltiSnips/help.snippets
+12 −24 UltiSnips/html.snippets
+1 −1 UltiSnips/html_minimal.snippets
+5 −5 UltiSnips/java.snippets
+6 −15 UltiSnips/javascript.snippets
+54 −2 UltiSnips/javascript_angular.snippets
+17 −0 UltiSnips/javascript_jasmine.snippets
+1 −1 UltiSnips/javascript_jsdoc.snippets
+10 −1 UltiSnips/pandoc.snippets
+7 −0 UltiSnips/perl.snippets
+113 −28 UltiSnips/php.snippets
+257 −0 UltiSnips/php_laravel.snippets
+6 −0 UltiSnips/php_phpunit.snippets
+108 −27 UltiSnips/python.snippets
+26 −32 UltiSnips/rst.snippets
+44 −237 UltiSnips/ruby.snippets
+1 −184 UltiSnips/rust.snippets
+16 −14 UltiSnips/scss.snippets
+12 −1 UltiSnips/tex.snippets
+29 −25 snippets/_.snippets
+0 −4 snippets/actionscript.snippets
+217 −0 snippets/ada.snippets
+102 −0 snippets/awk.snippets
+21 −24 snippets/clojure.snippets
+218 −0 snippets/codeigniter.snippets
+11 −0 snippets/coffee/requirejs_coffee.snippets
+338 −0 snippets/d.snippets
+6 −0 snippets/eelixir.snippets
+19 −5 snippets/elixir.snippets
+2 −0 snippets/eruby.snippets
+93 −0 snippets/fortran.snippets
+5 −2 snippets/go.snippets
+10 −2 snippets/haskell.snippets
+46 −6 snippets/html.snippets
+2 −0 snippets/java.snippets
+14 −0 snippets/javascript/javascript-requirejs.snippets
+49 −0 snippets/javascript/javascript.node.snippets
+125 −71 snippets/javascript/javascript.snippets
+69 −17 snippets/markdown.snippets
+8 −0 snippets/perl.snippets
+4 −0 snippets/php.snippets
+73 −48 snippets/puppet.snippets
+16 −0 snippets/python.snippets
+2 −50 snippets/rails.snippets
+80 −1 snippets/ruby.snippets
+55 −18 snippets/rust.snippets
+22 −16 snippets/scala.snippets
+42 −0 snippets/scss.snippets
+2 −0 snippets/snippets.snippets
+993 −0 snippets/stylus.snippets
+17 −0 snippets/tex.snippets
+8 −4 snippets/zsh.snippets
2 changes: 1 addition & 1 deletion vim/bundle/vim-speeddating
2 changes: 1 addition & 1 deletion vim/bundle/vim-surround
2 changes: 1 addition & 1 deletion vim/bundle/ycm
Submodule ycm updated from def392 to f35795

0 comments on commit 905cb8a

Please sign in to comment.