Skip to content

Commit a18e8e6

Browse files
committed
run scripts/build
1 parent 21d56d5 commit a18e8e6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+980
-626
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A collection of language packs for Vim.
77
> One to rule them all, one to find them, one to bring them all and in the darkness bind them.
88
99
- It **won't affect your startup time**, as scripts are loaded only on demand\*.
10-
- It **installs and updates 120+ times faster** than the <!--Package Count-->598<!--/Package Count--> packages it consists of.
10+
- It **installs and updates 120+ times faster** than the <!--Package Count-->599<!--/Package Count--> packages it consists of.
1111
- It is also more secure (scripts loaded for every filetype are generated by vim-polyglot)
1212
- Best syntax and indentation support (no other features). Hand-selected language packs.
1313
- Automatically detects indentation (includes performance-optimized version of [vim-sleuth](https://github.com/tpope/vim-sleuth), can be disabled)
@@ -70,7 +70,7 @@ On top of all language packs from [vim repository](https://github.com/vim/vim/tr
7070
- [dart](https://github.com/dart-lang/dart-vim-plugin) (Dart syntax highlighting for dart and drt files)
7171
- [dhall](https://github.com/vmchale/dhall-vim) (Dhall syntax highlighting for dhall files)
7272
- [dlang](https://github.com/JesseKPhillips/d.vim) (D syntax highlighting for d, di, lst, dd, ddoc and sdl files)
73-
- [docker](https://github.com/ekalinin/Dockerfile.vim)
73+
- [docker-compose](https://github.com/ekalinin/Dockerfile.vim)
7474
- [elixir](https://github.com/elixir-lang/vim-elixir) (Elixir and HTML+EEX syntax highlighting for ex, exs, eex, html.leex and leex files)
7575
- [elm](https://github.com/andys8/vim-elm-syntax) (Elm syntax highlighting for elm files)
7676
- [emberscript](https://github.com/yalesov/vim-ember-script) (EmberScript syntax highlighting for em and emberscript files)
@@ -85,7 +85,7 @@ On top of all language packs from [vim repository](https://github.com/vim/vim/tr
8585
- [git](https://github.com/tpope/vim-git) (Git Config syntax highlighting for gitconfig files)
8686
- [gitignore](https://github.com/SirJson/fzf-gitignore)
8787
- [gleam](https://github.com/gleam-lang/gleam.vim) (Syntax highlighting for gleam files)
88-
- [glsl](https://github.com/tikhomirov/vim-glsl) (GLSL syntax highlighting for glsl, fp, frag, frg, fs and 16 more files)
88+
- [glsl](https://github.com/tikhomirov/vim-glsl) (GLSL syntax highlighting for glsl, fp, frag, frg, fs and 18 more files)
8989
- [gmpl](https://github.com/maelvalais/gmpl.vim) (Syntax highlighting for mod files)
9090
- [gnuplot](https://github.com/vim-scripts/gnuplot-syntax-highlighting) (Gnuplot syntax highlighting for gp, gnu, gnuplot, p, plot, plt and gpi files)
9191
- [go](https://github.com/fatih/vim-go) (Go syntax highlighting for go and tmpl files)
@@ -176,6 +176,7 @@ On top of all language packs from [vim repository](https://github.com/vim/vim/tr
176176
- [sh](https://github.com/arzg/vim-sh) (Shell syntax highlighting for sh, bash, bats, cgi, command and 7 more files)
177177
- [slim](https://github.com/slim-template/vim-slim) (Slim syntax highlighting for slim files)
178178
- [slime](https://github.com/slime-lang/vim-slime-syntax) (Syntax highlighting for slime files)
179+
- [smithy](https://github.com/jasdel/vim-smithy) (Syntax highlighting for smithy files)
179180
- [smt2](https://github.com/bohlender/vim-smt2) (SMT syntax highlighting for smt2 and smt files)
180181
- [solidity](https://github.com/TovarishFin/vim-solidity) (Solidity syntax highlighting for sol files)
181182
- [stylus](https://github.com/wavded/vim-stylus) (Stylus syntax highlighting for styl and stylus files)

after/compiler/tex.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ endif
2222
if exists('b:tex_ignore_makefile') || exists('g:tex_ignore_makefile') ||
2323
\(!filereadable('Makefile') && !filereadable('makefile'))
2424
" If buffer-local variable 'tex_flavor' exists, it defines TeX flavor,
25-
" otherwize the same for global variable with same name, else it will be
25+
" otherwise the same for global variable with same name, else it will be
2626
" LaTeX
2727
if exists("b:tex_flavor")
2828
let current_compiler = b:tex_flavor

after/ftplugin/tex.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ let &l:define .= '\|\\\(re\)\=new\(boolean\|command\|counter\|environment\|font'
3232

3333
" Tell Vim how to recognize LaTeX \include{foo} and plain \input bar :
3434
let &l:include .= '\|\\include{'
35-
" On some file systems, "{" and "}" are inluded in 'isfname'. In case the
35+
" On some file systems, "{" and "}" are included in 'isfname'. In case the
3636
" TeX file has \include{fname} (LaTeX only), strip everything except "fname".
3737
let &l:includeexpr = "substitute(v:fname, '^.\\{-}{\\|}.*', '', 'g')"
3838

after/indent/tex.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ function! GetTeXIndent() " {{{
292292
let ind = ind - shiftwidth()
293293
let stay = 0
294294
endif
295-
" lines following to '\item' are intented once again:
295+
" lines following to '\item' are indented once again:
296296
if line =~ g:tex_items
297297
let ind = ind + shiftwidth()
298298
let stay = 0

after/syntax/rescript/graphql.vim

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
if polyglot#init#is_disabled(expand('<sfile>:p'), 'graphql', 'after/syntax/rescript/graphql.vim')
2+
finish
3+
endif
4+
5+
" Copyright (c) 2016-2021 Jon Parise <[email protected]>
6+
"
7+
" Permission is hereby granted, free of charge, to any person obtaining a copy
8+
" of this software and associated documentation files (the "Software"), to
9+
" deal in the Software without restriction, including without limitation the
10+
" rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
11+
" sell copies of the Software, and to permit persons to whom the Software is
12+
" furnished to do so, subject to the following conditions:
13+
"
14+
" The above copyright notice and this permission notice shall be included in
15+
" all copies or substantial portions of the Software.
16+
"
17+
" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
" AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
" LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22+
" FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
23+
" IN THE SOFTWARE.
24+
"
25+
" Language: GraphQL
26+
" Maintainer: Jon Parise <[email protected]>
27+
28+
if exists('b:current_syntax')
29+
let s:current_syntax = b:current_syntax
30+
unlet b:current_syntax
31+
endif
32+
33+
let b:graphql_nested_syntax = 1
34+
syn include @GraphQLSyntax syntax/graphql.vim
35+
unlet b:graphql_nested_syntax
36+
37+
if exists('s:current_syntax')
38+
let b:current_syntax = s:current_syntax
39+
endif
40+
41+
syntax region graphqlExtensionPoint start=+%graphql(+ end=+)+ contains=graphqlExtensionPointS
42+
syntax region graphqlExtensionPointS matchgroup=String start=+`+ end=+`+ contains=@GraphQLSyntax contained

autoload/ada.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@ if exists ('g:ada_with_gnat_project_files')
7171
endfor
7272
endif
7373

74-
" Section: add standart exception {{{2
74+
" Section: add standard exception {{{2
7575
"
7676
for Item in ['Constraint_Error', 'Program_Error', 'Storage_Error', 'Tasking_Error', 'Status_Error', 'Mode_Error', 'Name_Error', 'Use_Error', 'Device_Error', 'End_Error', 'Data_Error', 'Layout_Error', 'Length_Error', 'Pattern_Error', 'Index_Error', 'Translation_Error', 'Time_Error', 'Argument_Error', 'Tag_Error', 'Picture_Error', 'Terminator_Error', 'Conversion_Error', 'Pointer_Error', 'Dereference_Error', 'Update_Error']
7777
let g:ada#Keywords += [{
7878
\ 'word': Item,
7979
\ 'menu': 'exception',
80-
\ 'info': 'Ada standart exception.',
80+
\ 'info': 'Ada standard exception.',
8181
\ 'kind': 'x',
8282
\ 'icase': 1}]
8383
endfor
@@ -214,7 +214,7 @@ function ada#Word (...)
214214
let l:Line = substitute (getline (l:Line_Nr), g:ada#Comment, '', '' )
215215

216216
" Cope with tag searching for items in comments; if we are, don't loop
217-
" backards looking for previous lines
217+
" backwards looking for previous lines
218218
if l:Column_Nr > strlen(l:Line)
219219
" We were in a comment
220220
let l:Line = getline(l:Line_Nr)

0 commit comments

Comments
 (0)