Giter Club home page Giter Club logo

xruntime.vim's Introduction

Build Status

This is a highly experimental plugin that provides a simple form of pre-processing for vimscript files. It's mostly a fun hack, and probably nothing you can use in practice.

Usage

Instead of using :runtime to evaluate a vimscript file, you use :Xruntime. This call should be equivalent, save for attempting to evaluate the file a bit differently if it contains certain directives.

Here's an example -- given this vimscript file:

""" LANGUAGE InlineFunctionArguments

function Test(one, two)
  return [one, two]
endfunction

This is incorrect vimscript, since the one and two variables need to be prefixed by a:. However, the :Xruntime and :Xsource commands see the LANGUAGE directive at the top, generate a vimscript file out of it with the following two lines added:

let one = a:one
let two = a:two

And this makes it a perfectly valid vimscript file, which is then runtime'd. You can think of it as a very limited form of "coffeescript for vimscript".

Currently, the only directive available is InlineFunctionArguments.

Contributing

Pull requests are welcome, but take a look at CONTRIBUTING.md first for some guidelines.

xruntime.vim's People

Contributors

andrewradev avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.