mirror of
https://github.com/neovim/neovim.git
synced 2024-12-23 12:45:17 -07:00
vim-patch:9.1.0486: filetype: Snakemake files are not recognized
Problem: filetype: Snakemake files are not recognized
Solution: Detect '*.smk' and Snakefile files as snakemake filetype
(Riley Bruins)
See:
https://snakemake.readthedocs.io/en/stable/snakefiles/deployment.html#distribution-and-reproducibility
closes: vim/vim#14992
82a579e15a
Co-authored-by: Riley Bruins <ribru17@hotmail.com>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
This commit is contained in:
parent
61aabe0730
commit
4faad4a950
13
runtime/ftplugin/snakemake.vim
Normal file
13
runtime/ftplugin/snakemake.vim
Normal file
@ -0,0 +1,13 @@
|
||||
" Vim filetype plugin
|
||||
" Language: snakemake
|
||||
" Maintainer: Riley Bruins <ribru17@gmail.com>
|
||||
" Last Change: 2024 Jun 13
|
||||
|
||||
if exists('b:did_ftplugin')
|
||||
finish
|
||||
endif
|
||||
let b:did_ftplugin = 1
|
||||
|
||||
setl comments=:# commentstring=#\ %s
|
||||
|
||||
let b:undo_ftplugin = 'setl com< cms<'
|
@ -985,6 +985,7 @@ local extension = {
|
||||
smt = 'smith',
|
||||
smithy = 'smithy',
|
||||
sml = 'sml',
|
||||
smk = 'snakemake',
|
||||
spt = 'snobol4',
|
||||
sno = 'snobol4',
|
||||
sln = 'solution',
|
||||
@ -1620,6 +1621,7 @@ local filename = {
|
||||
['/etc/slp.spi'] = 'slpspi',
|
||||
['.slrnrc'] = 'slrnrc',
|
||||
['sendmail.cf'] = 'sm',
|
||||
Snakefile = 'snakemake',
|
||||
['.sqlite_history'] = 'sql',
|
||||
['squid.conf'] = 'squid',
|
||||
['ssh_config'] = 'sshconfig',
|
||||
|
@ -670,6 +670,7 @@ func s:GetFilenameChecks() abort
|
||||
\ 'smith': ['file.smt', 'file.smith'],
|
||||
\ 'smithy': ['file.smithy'],
|
||||
\ 'sml': ['file.sml'],
|
||||
\ 'snakemake': ['file.smk', 'Snakefile'],
|
||||
\ 'snobol4': ['file.sno', 'file.spt'],
|
||||
\ 'solidity': ['file.sol'],
|
||||
\ 'solution': ['file.sln'],
|
||||
|
Loading…
Reference in New Issue
Block a user