Compare commits

..

2 Commits

Author SHA1 Message Date
Adam Stankiewicz
f061eddb7c Update README.md
Some checks failed
Vim Polyglot CI / test (push) Has been cancelled
2025-08-27 19:10:22 +02:00
Haim
f5393cfee0 Update README.md (#861)
Some checks failed
Vim Polyglot CI / test (push) Has been cancelled
Fix parenthesis missing, thus logo was not showing up
2024-12-04 23:22:43 +01:00
3 changed files with 4 additions and 8 deletions

View File

@@ -1,8 +1,4 @@
This is my top-starred repository on Github, so I've decided to put this ad here: ![vim-polyglot](https://i.imgur.com/9RxQK6k.png)
If you work for big corp and seek consulting, please visit following repository: https://github.com/sheerun/consultation
![vim-polyglot](https://i.imgur.com/9RxQK6k.png
A collection of language packs for Vim. A collection of language packs for Vim.

View File

@@ -9,8 +9,7 @@ func! TestFiletype(filetype)
exec ":bw!" exec ":bw!"
catch catch
echo 'Failed to load ' . a:filetype . ' filetype...' echo 'Failed to load ' . a:filetype . ' filetype...'
echo v:throwpoint throw v:exception
echo v:exception
cq! cq!
endtry endtry
endfunc endfunc

View File

@@ -287,6 +287,7 @@ let s:filename_checks = {
\ 'mailcap': ['.mailcap', 'mailcap'], \ 'mailcap': ['.mailcap', 'mailcap'],
\ 'make': ['file.mk', 'file.mak', 'file.dsp', 'makefile', 'Makefile', 'makefile-file', 'Makefile-file', 'some-makefile', 'some-Makefile'], \ 'make': ['file.mk', 'file.mak', 'file.dsp', 'makefile', 'Makefile', 'makefile-file', 'Makefile-file', 'some-makefile', 'some-Makefile'],
\ 'mallard': ['file.page'], \ 'mallard': ['file.page'],
\ 'nroff': ['file.man'],
\ 'manconf': ['/etc/man.conf', 'man.config', 'any/etc/man.conf'], \ 'manconf': ['/etc/man.conf', 'man.config', 'any/etc/man.conf'],
\ 'map': ['file.map'], \ 'map': ['file.map'],
\ 'maple': ['file.mv', 'file.mpl', 'file.mws'], \ 'maple': ['file.mv', 'file.mpl', 'file.mws'],
@@ -329,7 +330,7 @@ let s:filename_checks = {
\ 'netrc': ['.netrc'], \ 'netrc': ['.netrc'],
\ 'ninja': ['file.ninja'], \ 'ninja': ['file.ninja'],
\ 'nqc': ['file.nqc'], \ 'nqc': ['file.nqc'],
\ 'nroff': ['file.man', 'file.tr', 'file.nr', 'file.roff', 'file.tmac', 'file.mom', 'tmac.file'], \ 'nroff': ['file.tr', 'file.nr', 'file.roff', 'file.tmac', 'file.mom', 'tmac.file'],
\ 'nsis': ['file.nsi', 'file.nsh'], \ 'nsis': ['file.nsi', 'file.nsh'],
\ 'obj': ['file.obj'], \ 'obj': ['file.obj'],
\ 'ocaml': ['file.ml', 'file.mli', 'file.mll', 'file.mly', '.ocamlinit'], \ 'ocaml': ['file.ml', 'file.mli', 'file.mll', 'file.mly', '.ocamlinit'],