From 9d72894fafe3661b2e932a61f9f637ff01848cc6 Mon Sep 17 00:00:00 2001 From: Santanu Bhowmick Date: Fri, 25 Aug 2017 17:35:23 -0700 Subject: [PATCH] Add VIM Scala support --- sources_non_forked/vim-scala/.gitignore | 6 + sources_non_forked/vim-scala/.travis.yml | 11 + sources_non_forked/vim-scala/Gemfile | 5 + sources_non_forked/vim-scala/Gemfile.lock | 20 + sources_non_forked/vim-scala/LICENSE.TXT | 201 ++++++ sources_non_forked/vim-scala/README.md | 63 ++ sources_non_forked/vim-scala/Rakefile | 6 + .../vim-scala/after/syntax/help.vim | 14 + sources_non_forked/vim-scala/compiler/sbt.vim | 30 + .../vim-scala/ctags/scala.ctags | 13 + sources_non_forked/vim-scala/doc/scala.txt | 133 ++++ .../vim-scala/ftdetect/scala.vim | 11 + .../vim-scala/ftplugin/scala.vim | 176 +++++ .../vim-scala/ftplugin/scala.xpt.vim | 29 + .../vim-scala/ftplugin/scala/tagbar.vim | 31 + sources_non_forked/vim-scala/indent/README | 78 +++ sources_non_forked/vim-scala/indent/scala.vim | 603 ++++++++++++++++++ .../vim-scala/indent/testfile.scala | 387 +++++++++++ sources_non_forked/vim-scala/plugin/scala.vim | 149 +++++ .../fixtures/multiple_newlines.expected.scala | 11 + .../spec/fixtures/multiple_newlines.scala | 12 + .../spec/fixtures/no_newline.expected.scala | 9 + .../vim-scala/spec/fixtures/no_newline.scala | 8 + .../fixtures/no_newline_after.expected.scala | 8 + .../spec/fixtures/no_newline_after.scala | 7 + .../spec/fixtures/no_package.expected.scala | 7 + .../vim-scala/spec/fixtures/no_package.scala | 6 + .../spec/fixtures/vanilla.expected.scala | 9 + .../vim-scala/spec/fixtures/vanilla.scala | 9 + .../vim-scala/spec/import_sorting_spec.rb | 16 + .../vim-scala/spec/spec_helper.rb | 44 ++ sources_non_forked/vim-scala/syntax/scala.vim | 230 +++++++ .../vim-scala/syntax/testfile.scala | 181 ++++++ 33 files changed, 2523 insertions(+) create mode 100644 sources_non_forked/vim-scala/.gitignore create mode 100644 sources_non_forked/vim-scala/.travis.yml create mode 100644 sources_non_forked/vim-scala/Gemfile create mode 100644 sources_non_forked/vim-scala/Gemfile.lock create mode 100644 sources_non_forked/vim-scala/LICENSE.TXT create mode 100644 sources_non_forked/vim-scala/README.md create mode 100644 sources_non_forked/vim-scala/Rakefile create mode 100644 sources_non_forked/vim-scala/after/syntax/help.vim create mode 100644 sources_non_forked/vim-scala/compiler/sbt.vim create mode 100644 sources_non_forked/vim-scala/ctags/scala.ctags create mode 100644 sources_non_forked/vim-scala/doc/scala.txt create mode 100644 sources_non_forked/vim-scala/ftdetect/scala.vim create mode 100644 sources_non_forked/vim-scala/ftplugin/scala.vim create mode 100644 sources_non_forked/vim-scala/ftplugin/scala.xpt.vim create mode 100644 sources_non_forked/vim-scala/ftplugin/scala/tagbar.vim create mode 100644 sources_non_forked/vim-scala/indent/README create mode 100644 sources_non_forked/vim-scala/indent/scala.vim create mode 100644 sources_non_forked/vim-scala/indent/testfile.scala create mode 100644 sources_non_forked/vim-scala/plugin/scala.vim create mode 100644 sources_non_forked/vim-scala/spec/fixtures/multiple_newlines.expected.scala create mode 100644 sources_non_forked/vim-scala/spec/fixtures/multiple_newlines.scala create mode 100644 sources_non_forked/vim-scala/spec/fixtures/no_newline.expected.scala create mode 100644 sources_non_forked/vim-scala/spec/fixtures/no_newline.scala create mode 100644 sources_non_forked/vim-scala/spec/fixtures/no_newline_after.expected.scala create mode 100644 sources_non_forked/vim-scala/spec/fixtures/no_newline_after.scala create mode 100644 sources_non_forked/vim-scala/spec/fixtures/no_package.expected.scala create mode 100644 sources_non_forked/vim-scala/spec/fixtures/no_package.scala create mode 100644 sources_non_forked/vim-scala/spec/fixtures/vanilla.expected.scala create mode 100644 sources_non_forked/vim-scala/spec/fixtures/vanilla.scala create mode 100644 sources_non_forked/vim-scala/spec/import_sorting_spec.rb create mode 100644 sources_non_forked/vim-scala/spec/spec_helper.rb create mode 100644 sources_non_forked/vim-scala/syntax/scala.vim create mode 100644 sources_non_forked/vim-scala/syntax/testfile.scala diff --git a/sources_non_forked/vim-scala/.gitignore b/sources_non_forked/vim-scala/.gitignore new file mode 100644 index 00000000..01716d21 --- /dev/null +++ b/sources_non_forked/vim-scala/.gitignore @@ -0,0 +1,6 @@ +# Ignore Vim tag files +tags + +# Ignore Vim swap files +.*.swp +.*.swo diff --git a/sources_non_forked/vim-scala/.travis.yml b/sources_non_forked/vim-scala/.travis.yml new file mode 100644 index 00000000..c1ac6c55 --- /dev/null +++ b/sources_non_forked/vim-scala/.travis.yml @@ -0,0 +1,11 @@ +language: ruby +rvm: + - 1.9.3 +before_install: sudo apt-get install vim-gtk +before_script: + - "export DISPLAY=:99.0" + - "sh -e /etc/init.d/xvfb start" +notifications: + email: + on_success: never + on_failure: change diff --git a/sources_non_forked/vim-scala/Gemfile b/sources_non_forked/vim-scala/Gemfile new file mode 100644 index 00000000..414fd039 --- /dev/null +++ b/sources_non_forked/vim-scala/Gemfile @@ -0,0 +1,5 @@ +source 'https://rubygems.org' +gem 'vimrunner', '0.3.0' +gem 'rake', '10.0.4' +gem 'rspec', '~> 2.13.0' + diff --git a/sources_non_forked/vim-scala/Gemfile.lock b/sources_non_forked/vim-scala/Gemfile.lock new file mode 100644 index 00000000..ea5528e2 --- /dev/null +++ b/sources_non_forked/vim-scala/Gemfile.lock @@ -0,0 +1,20 @@ +GEM + remote: https://rubygems.org/ + specs: + diff-lcs (1.1.3) + rake (0.9.2.2) + rspec (2.9.0) + rspec-core (~> 2.9.0) + rspec-expectations (~> 2.9.0) + rspec-mocks (~> 2.9.0) + rspec-core (2.9.0) + rspec-expectations (2.9.1) + diff-lcs (~> 1.1.3) + rspec-mocks (2.9.0) + +PLATFORMS + ruby + +DEPENDENCIES + rake + rspec diff --git a/sources_non_forked/vim-scala/LICENSE.TXT b/sources_non_forked/vim-scala/LICENSE.TXT new file mode 100644 index 00000000..66b0c460 --- /dev/null +++ b/sources_non_forked/vim-scala/LICENSE.TXT @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright {yyyy} {name of copyright owner} + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/sources_non_forked/vim-scala/README.md b/sources_non_forked/vim-scala/README.md new file mode 100644 index 00000000..bfc5bc3f --- /dev/null +++ b/sources_non_forked/vim-scala/README.md @@ -0,0 +1,63 @@ +vim-scala +========= + +This is a "bundle" for Vim that builds off of the initial Scala plugin modules +by Stefan Matthias Aust and adds some more "stuff" that I find useful, including +all of my notes and customizations. + +## Installation + +You really should be using Tim Pope's [Pathogen](https://github.com/tpope/vim-pathogen) module for Vim (http://tammersaleh.com/posts/the-modern-vim-config-with-pathogen) if you're going to clone this repository because, well... you should. + +### Using the command-line + +Using wget: + +```mkdir -p ~/.vim/{ftdetect,indent,syntax} && for d in ftdetect indent syntax ; do wget -O ~/.vim/$d/scala.vim https://raw.githubusercontent.com/derekwyatt/vim-scala/master/$d/scala.vim; done``` + +Using cURL: + +```mkdir -p ~/.vim/{ftdetect,indent,syntax} && for d in ftdetect indent syntax ; do curl -o ~/.vim/$d/scala.vim https://raw.githubusercontent.com/derekwyatt/vim-scala/master/$d/scala.vim; done``` + +### Vundle +Alternatively, you can use [Vundle](https://github.com/gmarik/vundle) to +manage your plugins. + +If you have Vundle installed, simply add the following to your .vimrc: + +```vim +Plugin 'derekwyatt/vim-scala' +``` + +and then run + +```vim +:PluginInstall +``` + +to install it. + +## Sorting of import statements + :SortScalaImports + +There are different modes for import sorting available. For details, please +consult the vimdoc help with + + :help :SortScalaImports + +## Scaladoc comment indentation + +By default, the plugin indents documentation comments according to the standard +Javadoc format + + /** + * This is a doc comment using Javadoc-style indentation. + */ + +To enable the indentation standard as recommended for Scaladoc comments (from +http://docs.scala-lang.org/style/scaladoc.html, since Scaladoc2), add the +command ``let g:scala_scaladoc_indent = 1`` to .vimrc file, e.g: + + /** This is a Scaladoc comment using the recommended indentation. + * let g:scala_scaladoc_indent = 1 + */ diff --git a/sources_non_forked/vim-scala/Rakefile b/sources_non_forked/vim-scala/Rakefile new file mode 100644 index 00000000..7c845627 --- /dev/null +++ b/sources_non_forked/vim-scala/Rakefile @@ -0,0 +1,6 @@ +require 'rspec/core/rake_task' + +RSpec::Core::RakeTask.new + +task :test => :spec +task :default => :spec diff --git a/sources_non_forked/vim-scala/after/syntax/help.vim b/sources_non_forked/vim-scala/after/syntax/help.vim new file mode 100644 index 00000000..e3232128 --- /dev/null +++ b/sources_non_forked/vim-scala/after/syntax/help.vim @@ -0,0 +1,14 @@ +" Extends standard help syntax with highlighting of Scala code. +" +" Place code between !sc! and !/sc! delimiters. These will be hidden if Vim is +" built with conceal support. + +unlet! b:current_syntax + +syntax include @ScalaCode syntax/scala.vim + +if has('conceal') + syntax region rgnScala matchgroup=Ignore concealends start='!sc!' end='!/sc!' contains=@ScalaCode +else + syntax region rgnScala matchgroup=Ignore start='!sc!' end='!/sc!' contains=@ScalaCode +endif diff --git a/sources_non_forked/vim-scala/compiler/sbt.vim b/sources_non_forked/vim-scala/compiler/sbt.vim new file mode 100644 index 00000000..4c621922 --- /dev/null +++ b/sources_non_forked/vim-scala/compiler/sbt.vim @@ -0,0 +1,30 @@ +" Vim compiler file +" Language: Scala SBT (http://www.scala-sbt.org/) +" Maintainer: Derek Wyatt +" URL: https://github.com/derekwyatt/vim-scala +" License: Apache 2 +" ---------------------------------------------------------------------------- + +if exists('current_compiler') + finish +endif +let current_compiler = 'sbt' + +if exists(':CompilerSet') != 2 " older Vim always used :setlocal + command -nargs=* CompilerSet setlocal +endif + +let s:cpo_save = &cpo +set cpo-=C + +CompilerSet makeprg=sbt\ -Dsbt.log.noformat=true\ compile + +CompilerSet errorformat= + \%E\ %#[error]\ %f:%l:\ %m,%C\ %#[error]\ %p^,%-C%.%#,%Z, + \%W\ %#[warn]\ %f:%l:\ %m,%C\ %#[warn]\ %p^,%-C%.%#,%Z, + \%-G%.%# + +let &cpo = s:cpo_save +unlet s:cpo_save + +" vim:set sw=2 sts=2 ts=8 et: diff --git a/sources_non_forked/vim-scala/ctags/scala.ctags b/sources_non_forked/vim-scala/ctags/scala.ctags new file mode 100644 index 00000000..b7d31250 --- /dev/null +++ b/sources_non_forked/vim-scala/ctags/scala.ctags @@ -0,0 +1,13 @@ +--langdef=scala +--langmap=scala:.scala + +--regex-scala=/^[ \t]*((abstract|final|sealed|implicit|lazy)[ \t]*)*(private[^ ]*|protected)?[ \t]*class[ \t]+([a-zA-Z0-9_]+)/\4/c,classes/ +--regex-scala=/^[ \t]*((abstract|final|sealed|implicit|lazy)[ \t]*)*(private[^ ]*|protected)?[ \t]*object[ \t]+([a-zA-Z0-9_]+)/\4/o,objects/ +--regex-scala=/^[ \t]*((abstract|final|sealed|implicit|lazy)[ \t]*)*(private[^ ]*|protected)?[ \t]*((abstract|final|sealed|implicit|lazy)[ \t ]*)*case class[ \t ]+([a-zA-Z0-9_]+)/\6/C,case classes/ +--regex-scala=/^[ \t]*((abstract|final|sealed|implicit|lazy)[ \t]*)*(private[^ ]*|protected)?[ \t]*case object[ \t]+([a-zA-Z0-9_]+)/\4/O,case objects/ +--regex-scala=/^[ \t]*((abstract|final|sealed|implicit|lazy)[ \t]*)*(private[^ ]*|protected)?[ \t]*trait[ \t]+([a-zA-Z0-9_]+)/\4/t,traits/ +--regex-scala=/^[ \t]*type[ \t]+([a-zA-Z0-9_]+)/\1/T,types/ +--regex-scala=/^[ \t]*((abstract|final|sealed|implicit|lazy|override|private[^ ]*(\[[a-z]*\])*|protected)[ \t]*)*def[ \t]+([a-zA-Z0-9_]+)/\4/m,methods/ +--regex-scala=/^[ \t]*((abstract|final|sealed|implicit|lazy|override|private[^ ]*|protected)[ \t]*)*val[ \t]+([a-zA-Z0-9_]+)/\3/V,values/ +--regex-scala=/^[ \t]*((abstract|final|sealed|implicit|lazy|override|private[^ ]*|protected)[ \t]*)*var[ \t]+([a-zA-Z0-9_]+)/\3/v,variables/ +--regex-scala=/^[ \t]*package[ \t]+([a-zA-Z0-9_.]+)/\1/p,packages/ diff --git a/sources_non_forked/vim-scala/doc/scala.txt b/sources_non_forked/vim-scala/doc/scala.txt new file mode 100644 index 00000000..ebc2e68d --- /dev/null +++ b/sources_non_forked/vim-scala/doc/scala.txt @@ -0,0 +1,133 @@ +*scala.txt* Syntax highlighting and helper functions for the Scala language. + +This plugin is only available if 'compatible' is not set. +{Vi does not have any of this} + +============================================================================== +INTRODUCTION *scala* + +Syntax highlighting and helper functions for the scala language. Extras +include: + + - Sorting of import statements, configurable to your conventions. + - Tagbar support to navigate definitions within a file in the plugin's + sidebar window. + - ...and probably more that we've forgotten to update in this doc. + +============================================================================== +OPTIONS *scala-options* + +Use these options to control behavior of the plugin. Default values are +indicated in the examples. + + *'g:scala_use_builtin_tagbar_defs'* +If you are using the Tagbar Vim plugin, vim-scala includes a Tagbar type +definition and ctags definition for Scala, so you can use Tagbar immediately. +If you have your own ctags definition in `~/.ctags` and prefer to use it, set +this option to 0 (we would appreciate contributions if you've improved the +ctags definition!). + +Note that Tagbar's ctags definition for Scala is not used to generate a +|tags| file that Vim can use to navigate to definitions in other files, only +for the plugin sidebar. Feel free to copy `vim-scala/ctags/scala.ctags` into +your own `~/.ctags` if you wish to generate |tags| files. +> + let g:scala_use_builtin_tagbar_defs = 1 +< + *'g:scala_use_default_keymappings'* +Set this option to disable definition of all mappings provided by vim-scala. +See |scala-mappings|. +> + let g:scala_use_default_keymappings = 1 +< + + *'g:scala_scaladoc_indent'* +By default, the plugin indents documentation comments according to the +standard Javadoc format. + /** + * This is a doc comment using Javadoc-style indentation. + */ +Set this option to enable the indentation standard as recommended for Scaladoc +comments. + /** This is a Scaladoc comment using + * the recommended indentation. + */ +> + let g:scala_scaladoc_indent = 1 +< + +============================================================================== +COMMANDS *scala-commands* + + *:SortScalaImports* +:SortScalaImports There are two modes in which this command can operate. + By default it walks all import groups at the top of + the Scala file and orders their lines alphabetically. + A group is a series of lines starting with the + import keyword separated by one or more blank lines. + + The second, more advanced mode, can be activated by + setting + + let g:scala_sort_across_groups=1 + + This makes this command include all imports in the + sorting regardless of blank lines in between them and + puts them in three predefined groups instead. + The three groups in which the imports can fall are: + + 1. Scala and Java core + 2. Third party libraries + 3. First party code (ie. your own) + + Java and Scala core imports are identified by the + java(x) and scala namespaces. + Everything else that isn't a first party namespace + will be a third party import. + You can define a regex that matches first party + namespaces by setting + + g:scala_first_party_namespaces + + For example in a standard Play app this would be + set to + g:scala_first_party_namespaces= + \ '\(controllers\|views\|models\)' + +============================================================================== +MAPPINGS *scala-mappings* + +Currently the only mappings defined are for FuzzyFinder users--these will +only be enabled if FuzzyFinder is detected. + + *scala-leader-fs* +fs "Find src". Primes |:FufFile| with `src/main/scala`, + and goes deeper still if only a single directory + exists below that. Helpful for package namespacing + like `src/main/scala/com/myorg`. + + *scala-leader-ft* +ft "Find test". Like |scala-leader-fs|, but with + `src/test/scala`. + + *scala-leader-fr* +fr "Find from root". For the rarer cases when you want to + start FuzzyFinder at project root (parent of `src/`). + +Disabling Mappings~ + +If you wish to disable the default key mappings, write the following line in +your ~/.vimrc: > + + let g:scala_use_default_keymappings = 0 + +============================================================================== +CREDITS *scala-credits* + +Developed by Derek Wyatt, building on initial work by Stefan Matthias Aust. +Distributed under the Apache 2 license. + +Project's home and Git repository: https://github.com/derekwyatt/vim-scala + +------------------------------------------------------------------------------ + vim:tw=78:ts=8:ft=help:norl: diff --git a/sources_non_forked/vim-scala/ftdetect/scala.vim b/sources_non_forked/vim-scala/ftdetect/scala.vim new file mode 100644 index 00000000..785d8134 --- /dev/null +++ b/sources_non_forked/vim-scala/ftdetect/scala.vim @@ -0,0 +1,11 @@ +fun! s:DetectScala() + if getline(1) =~# '^#!\(/usr\)\?/bin/env\s\+scalas\?' + set filetype=scala + endif +endfun + +au BufRead,BufNewFile *.scala set filetype=scala +au BufRead,BufNewFile * call s:DetectScala() + +" Install vim-sbt for additional syntax highlighting. +au BufRead,BufNewFile *.sbt setfiletype sbt.scala diff --git a/sources_non_forked/vim-scala/ftplugin/scala.vim b/sources_non_forked/vim-scala/ftplugin/scala.vim new file mode 100644 index 00000000..9dc10961 --- /dev/null +++ b/sources_non_forked/vim-scala/ftplugin/scala.vim @@ -0,0 +1,176 @@ +" Vim filetype plugin +" Language: Scala +" Maintainer: Derek Wyatt +" URL: https://github.com/derekwyatt/vim-scala +" License: Apache 2 +" ---------------------------------------------------------------------------- + +if exists('b:did_ftplugin') || &cp + finish +endif +let b:did_ftplugin = 1 + +" j is fairly new in Vim, so don't complain if it's not there +setlocal formatoptions-=t formatoptions+=croqnl +silent! setlocal formatoptions+=j + +" Just like c.vim, but additionally doesn't wrap text onto /** line when +" formatting. Doesn't bungle bulleted lists when formatting. +if get(g:, 'scala_scaladoc_indent', 0) + setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s2:/**,mb:*,ex:*/,s1:/*,mb:*,ex:*/,:// +else + setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/**,mb:*,ex:*/,s1:/*,mb:*,ex:*/,:// +endif +setlocal commentstring=//\ %s + +setlocal shiftwidth=2 softtabstop=2 expandtab + +setlocal include='^\s*import' +setlocal includeexpr='substitute(v:fname,"\\.","/","g")' + +setlocal path+=src/main/scala,src/test/scala +setlocal suffixesadd=.scala + +compiler sbt + +if globpath(&rtp, 'plugin/fuf.vim') != '' + " + " FuzzyFinder stuff + " + " + " SanitizeDirForFuzzyFinder() + " + " This is really just a convenience function to clean up any stray '/' + " characters in the path, should they be there. + " + function! scala#SanitizeDirForFuzzyFinder(dir) + let dir = expand(a:dir) + let dir = substitute(dir, '/\+$', '', '') + let dir = substitute(dir, '/\+', '/', '') + + return dir + endfunction + + " + " GetDirForFuzzyFinder() + " + " Given a directory to start 'from', walk up the hierarchy, looking for a path + " that matches the 'addon' you want to see. + " + " If nothing can be found, then we just return the 'from' so we don't really get + " the advantage of a hint, but just let the user start from wherever he was + " starting from anyway. + " + function! scala#GetDirForFuzzyFinder(from, addon) + let from = scala#SanitizeDirForFuzzyFinder(a:from) + let addon = expand(a:addon) + let addon = substitute(addon, '^/\+', '', '') + let found = '' + " If the addon is right here, then we win + if isdirectory(from . '/' . addon) + let found = from . '/' . addon + else + let dirs = split(from, '/') + if !has('win32') && !has('win64') + let dirs[0] = '/' . dirs[0] + endif + " Walk up the tree and see if it's anywhere there + for n in range(len(dirs) - 1, 0, -1) + let path = join(dirs[0:n], '/') + if isdirectory(path . '/' . addon) + let found = path . '/' . addon + break + endif + endfor + endif + " If we found it, then let's see if we can go deeper + " + " For example, we may have found component_name/include + " but what if that directory only has a single directory + " in it, and that subdirectory only has a single directory + " in it, etc... ? This can happen when you're segmenting + " by namespace like this: + " + " component_name/include/org/vim/CoolClass.h + " + " You may find yourself always typing '' from the + " 'include' directory just to go into 'org/vim' so let's + " just eliminate the need to hit the ''. + if found != '' + let tempfrom = found + let globbed = globpath(tempfrom, '*') + while len(split(globbed, "\n")) == 1 + let tempfrom = globbed + let globbed = globpath(tempfrom, '*') + endwhile + let found = scala#SanitizeDirForFuzzyFinder(tempfrom) . '/' + else + let found = from + endif + + return found + endfunction + + " + " GetTestDirForFuzzyFinder() + " + " Now overload GetDirForFuzzyFinder() specifically for the test directory (I'm + " really only interested in going down into test/src 90% of the time, so let's + " hit that 90% and leave the other 10% to couple of extra keystrokes) + " + function! scala#GetTestDirForFuzzyFinder(from) + return scala#GetDirForFuzzyFinder(a:from, 'src/test/scala/') + endfunction + + " + " GetMainDirForFuzzyFinder() + " + " Now overload GetDirForFuzzyFinder() specifically for the main directory. + " + function! scala#GetMainDirForFuzzyFinder(from) + return scala#GetDirForFuzzyFinder(a:from, 'src/main/scala/') + endfunction + + " + " GetRootDirForFuzzyFinder() + " + " Now overload GetDirForFuzzyFinder() specifically for the root directory. + " + function! scala#GetRootDirForFuzzyFinder(from) + return scala#GetDirForFuzzyFinder(a:from, 'src/../') + endfunction + + " If you want to disable the default key mappings, write the following line in + " your ~/.vimrc + " let g:scala_use_default_keymappings = 0 + if get(g:, 'scala_use_default_keymappings', 1) + nnoremap ft :FufFile =scala#GetTestDirForFuzzyFinder('%:p:h') + nnoremap fs :FufFile =scala#GetMainDirForFuzzyFinder('%:p:h') + nnoremap fr :FufFile =scala#GetRootDirForFuzzyFinder('%:p:h') + endif +endif + +function! s:CreateOrExpression(keywords) + return '('.join(a:keywords, '|').')' +endfunction + +function! s:NextSection(backwards) + if a:backwards + let dir = '?' + else + let dir = '/' + endif + let keywords = [ 'def', 'class', 'trait', 'object' ] + let keywordsOrExpression = s:CreateOrExpression(keywords) + + let modifiers = [ 'public', 'private', 'private\[\w*\]', 'protected', 'abstract', 'case', 'override', 'implicit', 'final', 'sealed'] + let modifierOrExpression = s:CreateOrExpression(modifiers) + + let regex = '^ *('.modifierOrExpression.' )* *'.keywordsOrExpression."\r" + execute 'silent normal! ' . dir . '\v'.regex +endfunction + +noremap