Vimscript
1 program
Added 2026-02-24T00:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Vim Script, VimL
Provenance: commit 84984e0b74 · authored 2026-02-24T21:37:16+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
8 sources · pl_id:
pl/vim-scriptExtensions claimed by this language
12 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.vim | linguist | primary | 3.5M files |
.vim | pygments | primary | 3.5M files |
.vim | wikidata | primary | 3.5M files |
._exrc | pygments | secondary | — |
._gvimrc | pygments | secondary | — |
._vimrc | pygments | secondary | — |
.exrc | pygments | secondary | 52 files |
.gvimrc | pygments | secondary | 682 files |
.vba | linguist | secondary | 14.0K files |
.vimrc | linguist | secondary | 69.4K files |
.vimrc | pygments | secondary | 69.4K files |
.vmb | linguist | secondary | 2.1K files |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 84984e0b74 · authored 2026-02-24T21:37:16+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
function! Fibonacci(n)
if a:n < 2
return a:n
endif
return Fibonacci(a:n - 1) + Fibonacci(a:n - 2)
endfunction
for i in range(0, 10)
echo Fibonacci(i)
endfor
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)
Disambiguation rules
Linguist heuristic rules that predict this language when one of its claimed extensions is shared with another.
| Rule | Ext | Kind | Predicates (truncated) |
|---|---|---|---|
h/linguist/.vba/0 | .vba | predicates | [{"kind": "any", "regexes": ["^UseVimball"]}] |