vimlrs 0.2.1

Faithful Rust port of the Vimscript (VimL) interpreter, from the Neovim C eval engine
Documentation
1
2
3
4
5
6
7
8
9
10
" mathlib.vim — a small library file, loaded by sourcing.vim via :source.
function! Square(n) abort
  return a:n * a:n
endfunction

function! Cube(n) abort
  return a:n * a:n * a:n
endfunction

let g:mathlib_loaded = 1