Compare commits

...

3 Commits

Author SHA1 Message Date
Mihai Galos
9e3d8ace08 Merge cf408f9125 into 692e359ad9 2024-11-29 08:59:30 +00:00
Adam Stankiewicz
692e359ad9 Update README.md
Some checks failed
Vim Polyglot CI / test (push) Has been cancelled
2024-10-22 08:33:53 +02:00
Mihai Galos
cf408f9125 Match filenames case-insenstively 2021-10-10 20:45:10 +02:00
4 changed files with 4 additions and 6 deletions

View File

@@ -2,9 +2,7 @@ This is my top-starred repository on Github, so I've decided to put this ad here
If you work for big corp and seek consulting, please visit following repository: https://github.com/sheerun/consultation 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) ![vim-polyglot](https://i.imgur.com/9RxQK6k.png
[![build](https://github.com/sheerun/vim-polyglot/workflows/Vim%20Polyglot%20CI/badge.svg)](https://github.com/sheerun/vim-polyglot/actions) [![Maintenance](https://img.shields.io/badge/maintained%20since-2013-yes)]()
A collection of language packs for Vim. A collection of language packs for Vim.

View File

@@ -190,7 +190,7 @@ if !has_key(g:polyglot_is_disabled, 'nftables')
endif endif
if !has_key(g:polyglot_is_disabled, 'just') if !has_key(g:polyglot_is_disabled, 'just')
au BufNewFile,BufRead *.just,justfile setf just au BufNewFile,BufRead *.just,\cjustfile setf just
endif endif
if !has_key(g:polyglot_is_disabled, 'sway') if !has_key(g:polyglot_is_disabled, 'sway')

View File

@@ -269,7 +269,7 @@ let s:globs = {
\ 'jsp': '*.jsp', \ 'jsp': '*.jsp',
\ 'jst': '*.ejs,*.ect,*.ejs.t,*.jst', \ 'jst': '*.ejs,*.ect,*.ejs.t,*.jst',
\ 'julia': '*.jl', \ 'julia': '*.jl',
\ 'just': '*.just,justfile', \ 'just': '*.just,\cjustfile',
\ 'kconfig': 'Kconfig,Kconfig.debug,Kconfig.*', \ 'kconfig': 'Kconfig,Kconfig.debug,Kconfig.*',
\ 'kivy': '*.kv', \ 'kivy': '*.kv',
\ 'kix': '*.kix', \ 'kix': '*.kix',

View File

@@ -5502,7 +5502,7 @@ remote: NoahTheDuke/vim-just
filetypes: filetypes:
- name: just - name: just
patterns: patterns:
- pattern: 'justfile,*.just' - pattern: '\cjustfile,*.just'
description: 'Just a task runner (https://github.com/casey/just)' description: 'Just a task runner (https://github.com/casey/just)'
--- ---
name: nftables name: nftables