mirror of
https://github.com/raimon49/requirements.txt.vim.git
synced 2026-01-31 12:25:22 +08:00
* Move the function 'matched_filename' to ftdetect #4 * Move the variable 'g:requirements#detect_filename_pattern' to ftdetect #4 * Rename 'describe' in unittest * Add dein.vim in section of installation * Bump version to 1.3.0 Close #4
12 lines
237 B
VimL
12 lines
237 B
VimL
" the Requirements File Format syntax support for Vim
|
|
" Version: 1.3.0
|
|
" Author: raimon <raimon49@hotmail.com>
|
|
" License: MIT LICENSE
|
|
|
|
let s:save_cpo = &cpo
|
|
set cpo&vim
|
|
|
|
let &cpo = s:save_cpo
|
|
unlet s:save_cpo
|
|
" vim: et sw=4 ts=4 sts=4:
|