molleweide / ydkjs-vim

:book: You Don't Know Js in Vim doc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

You Don't Know JS (book series) in Vim doc

YDKJS inside Vim

This is the awesome series of books diving deep into the core mechanisms of the JavaScript language, written by Kyle Simpson, made available right at your fingertips in Vim documentation.

How it works:

Simply type :help ydkjs.txt to open in a Vim buffer the entire book.

You can easily jump to the section you are looking for by selecting the chapter in the index.

Vim documentation doesn't support all the available syntax highlighting that markdown does, but we can have:

  • title formatting
  • highlighting inline code-like
  • a basic but useful code formatting

Book License & Copyright

The materials herein are all © 2013-2018 Kyle Simpson.

Please note that all the books are written by Kyle Simpson, and all credits go to him; I only made available in Vim's documentation format the text that everyone could read for free here:

Or buy here:

Installation

  • Vundle, add the following line to your ~/.vimrc:

    Bundle 'glippi/ydkjs-vim'

    $ vim +'PluginInstall! ydkjs-vim' +qall

  • vim-plug, add the following to your plugin section:

    Plug 'glippi/ydkjs-vim'

    $ vim +PlugInstall

  • NeoBundle, add the following line to your ~/.vimrc:

    NeoBundle 'glippi/ydkjs-vim'

    $ vim +NeoBundleInstall +qall

  • Pathogen, execute the following in your shell:

    $ cd ~/.vim/bundle

    $ git clone https://github.com/glippi/ydkjs-vim.git

Self-Promotion

If you like this plugin, you are welcome to:

License

This plugin is distributed under the same terms as Vim itself. See :help license.

About

:book: You Don't Know Js in Vim doc