Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vim-jp/syntax-vim-ex
An excellent Vim's syntax highlighting file for Vim script
https://github.com/vim-jp/syntax-vim-ex
syntax-vim vim vim-script
Last synced: 3 months ago
JSON representation
An excellent Vim's syntax highlighting file for Vim script
- Host: GitHub
- URL: https://github.com/vim-jp/syntax-vim-ex
- Owner: vim-jp
- Archived: true
- Created: 2016-02-19T02:20:09.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-02-15T15:50:33.000Z (9 months ago)
- Last Synced: 2024-06-28T08:32:10.649Z (4 months ago)
- Topics: syntax-vim, vim, vim-script
- Language: Vim Script
- Homepage:
- Size: 481 KB
- Stars: 49
- Watchers: 9
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
syntax-vim-ex
=============An excellent Vim's syntax highlighting file for Vim script.
# Announcement: The generator part of this product has been included in the [main stream](https://github.com/vim/vim) with [9b53c05](https://github.com/vim/vim/commit/9b53c052d58f73f2078c61a74622687306e51c17).
# This product will no longer be updated.## Difference between [original][original]
- The syntax-vim-ex has been generated by parse the C source code of Vim. So
keyword extraction is accurate.
- Omitted keyword extraction algorithm of Ex command is perfect because it is
same and the C source code of Vim.
- It will immediately follow the Vim updates.
- Generator source code is all open sourced. (See [generator][generator] branch)## Requirement
Vim 7.4.1486 or later
## How to Install
```sh
$ cd ~/.vim
$ mkdir -p pack/my/opt
$ cd pack/my/opt
$ git clone --single-branch --depth 1 https://github.com/vim-jp/syntax-vim-ex.git
```Add following line to your `.vimrc`.
```vim
packadd! syntax-vim-ex
```**Remarks:**
- In the case of Windows should read the `~/.vim` to
`%HOMEDRIVE%%HOMEPATH%\vimfiles`. And mkdir `-p` option is not required.
- Directory name `my` can be changed to any name.
- If you want to configure the package under `~/.vim` directory as in this
example the setting of option `'packpath'` is not required.
- If you are calling `:packloadall` explicitly in your .vimrc, `packadd`
should be added before it.## How to Update
```sh
$ cd ~/.vim/pack/my/opt/syntax-vim-ex
$ git pull
```## Licence
Follow the [Vim license][license]
## Authors
- [Hirohito Higashi (h_east)](https://github.com/h-east)
- [vim-jp](http://vim-jp.org/)
- Charles E. Campbell (author of [original syntax/vim.vim][original])[original]:https://github.com/vim/vim/blob/master/runtime/syntax/vim.vim
[license]:https://github.com/vim/vim/blob/master/README.md#copying
[generator]:https://github.com/vim-jp/syntax-vim-ex/tree/generator