1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 07:00:04 +08:00

update file head (#1407)

* update file head

Update file head

* Update file head

* Update file head
This commit is contained in:
Wang Shidong 2018-02-19 22:07:04 +08:00 committed by GitHub
parent 753205a503
commit 3ccd4e4680
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
146 changed files with 1113 additions and 41 deletions

View File

@ -1,3 +1,8 @@
<!-- Copyright (c) 2016-2017 Wang Shidong & Contributors -->
<!-- Author: Wang Shidong < wsdjeg at 163.com > -->
<!-- URL: https://spacevim.org -->
<!-- License: GPLv3 -->
# Contributor Covenant Code of Conduct
## Our Pledge

View File

@ -1,3 +1,8 @@
<!-- Copyright (c) 2016-2017 Wang Shidong & Contributors -->
<!-- Author: Wang Shidong < wsdjeg at 163.com > -->
<!-- URL: https://spacevim.org -->
<!-- License: GPLv3 -->
# Contributing to SpaceVim
SpaceVim is an volunteer effort; we encourage you to pitch in. The community makes SpaceVim what it is.

View File

@ -1,3 +1,11 @@
"=============================================================================
" complete.vim --- SpaceVim complete API for bash
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:self = {}
let s:completer = fnamemodify(g:Config_Main_Home, ':p:h:h') . '/autoload/SpaceVim/bin/get_complete'

View File

@ -1,3 +1,10 @@
"=============================================================================
" cmdlinemenu.vim --- SpaceVim cmdlinemenu API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:api = {}

View File

@ -1,3 +1,10 @@
"=============================================================================
" color.vim --- SpaceVim color API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:self = {}
let s:self._color_map = {

View File

@ -1,3 +1,11 @@
"=============================================================================
" base64.vim --- SpaceVim base64 API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:self = {}
let s:CMP = SpaceVim#api#import('vim#compatible')

View File

@ -1,3 +1,11 @@
"=============================================================================
" dict.vim --- SpaceVim dict API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#api#data#dict#get() abort
return map({
\ 'make' : '',

View File

@ -1,3 +1,11 @@
"=============================================================================
" json.vim --- SpaceVim json API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:json = {}

View File

@ -1,3 +1,10 @@
"=============================================================================
" list.vim --- SpaceVim list API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#api#data#list#get() abort
return map({'pop' : '',
\ 'push' : '',

View File

@ -1,3 +1,11 @@
"=============================================================================
" number.vim --- SpaceVim number API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:save_cpo = &cpo
set cpo&vim

View File

@ -1,3 +1,11 @@
"=============================================================================
" string.vim --- SpaceVim string API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:file = {}
function! s:trim(str) abort

View File

@ -1,3 +1,10 @@
"=============================================================================
" file.vim --- SpaceVim file API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
scriptencoding utf-8
let s:file = {}
let s:system = SpaceVim#api#import('system')

View File

@ -1,3 +1,10 @@
"=============================================================================
" job.vim --- SpaceVim job API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#api#job#get() abort
return deepcopy(s:self)
endfunction

View File

@ -1,4 +1,10 @@
"=============================================================================
" logger.vim --- SpaceVim logger API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:self = {
\ 'name' : '',
\ 'silent' : 1,

View File

@ -1,3 +1,10 @@
"=============================================================================
" messletters.vim --- SpaceVim messletters API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
scriptencoding utf-8
let s:chars = {}
" type :

View File

@ -1,3 +1,10 @@
"=============================================================================
" password.vim --- SpaceVim password API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:self = {}
let s:NUMBER = SpaceVim#api#import('data#number')

View File

@ -1,3 +1,11 @@
"=============================================================================
" prompt.vim --- SpaceVim prompt API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section prompt, api-prompt
" @parentsection api

View File

@ -1,3 +1,10 @@
"=============================================================================
" system.vim --- SpaceVim system API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
scriptencoding utf-8
let s:system = {}

View File

@ -1,3 +1,10 @@
"=============================================================================
" time.vim --- SpaceVim time API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:self = {}
" see: man 3 strftime

View File

@ -1,3 +1,11 @@
"=============================================================================
" transient_state.vim --- SpaceVim transient_state API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:self = {}
let s:self._keys = {}

View File

@ -1,3 +1,11 @@
"=============================================================================
" box.vim --- SpaceVim box API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:box = {}
let s:json = SpaceVim#api#import('data#json')
let s:string = SpaceVim#api#import('data#string')

View File

@ -1,3 +1,11 @@
"=============================================================================
" icon.vim --- SpaceVim icon API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
scriptencoding utf-8
let s:self = {}

View File

@ -1,3 +1,11 @@
"=============================================================================
" buffer.vim --- SpaceVim buffer API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:self = {}

View File

@ -1,3 +1,11 @@
"=============================================================================
" command.vim --- SpaceVim command API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:self = {}
let s:self.options = {}

View File

@ -1,3 +1,10 @@
"=============================================================================
" compatible.vim --- SpaceVim compatible API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#api#vim#compatible#get() abort
return map({
\ 'execute' : '',

View File

@ -1,3 +1,11 @@
"=============================================================================
" highlight.vim --- SpaceVim highlight API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:self = {}
function! s:self.group2dict(name) abort

View File

@ -1,3 +1,11 @@
"=============================================================================
" key.vim --- SpaceVim key API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:self = {}
let s:specified_keys = {

View File

@ -1,3 +1,11 @@
"=============================================================================
" mapping.vim --- SpaceVim mapping API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:VIM = SpaceVim#api#import('vim#compatible')
function! SpaceVim#api#vim#mapping#get() abort

View File

@ -1,10 +1,10 @@
" ============================================================================
" File: message.vim
" Description: vim#message api of SpaceVim
" Author: L-stt
" Website: https://spacevim.org
" License: GPLv3
" ============================================================================
"=============================================================================
" message.vim --- SpaceVim message API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section vim#message, api-vim-message

View File

@ -1,10 +1,10 @@
" ============================================================================
" File: sid.vim
" Description: vim#sid api of SpaceVim
" Author: L-stt
" Website: https://spacevim.org
" License: GPLv3
" ============================================================================
"=============================================================================
" sid.vim --- SpaceVim SID API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section sid, api-vim-sid

View File

@ -1,3 +1,10 @@
"=============================================================================
" signatures.vim --- SpaceVim signatures API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:self = {}
let s:self.id = []
function! s:self.info(line, col, message) abort

View File

@ -1,3 +1,11 @@
"=============================================================================
" statusline.vim --- SpaceVim statusline API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:self = {}

View File

@ -1,3 +1,11 @@
"=============================================================================
" tab.vim --- SpaceVim tab API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:self = {}
let s:self._tree = {}

View File

@ -1,3 +1,11 @@
"=============================================================================
" html.vim --- SpaceVim html API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:save_cpo = &cpo
set cpo&vim

View File

@ -1,3 +1,11 @@
"=============================================================================
" http.vim --- SpaceVim http API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:save_cpo = &cpo
set cpo&vim

View File

@ -1,3 +1,11 @@
"=============================================================================
" xml.vim --- SpaceVim xml API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:save_cpo = &cpo
set cpo&vim

View File

@ -1,3 +1,11 @@
"=============================================================================
" commands.vim --- commands in SpaceVim
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#commands#load() abort
""
" Load exist layer, {layers} can be a string of a layer name, or a list

View File

@ -1,3 +1,11 @@
"=============================================================================
" custom.vim --- custom API in SpaceVim
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#custom#profile(dict) abort
for key in keys(a:dict)
call s:set(key, a:dict[key])

View File

@ -1,3 +1,11 @@
"=============================================================================
" default.vim --- default options in SpaceVim
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
scriptencoding utf-8
function! SpaceVim#default#SetOptions() abort
" basic vim settiing

View File

@ -1,3 +1,11 @@
"=============================================================================
" health.vim --- SpaceVim health checker
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#health#report() abort
let items = map(SpaceVim#util#globpath(&rtp,'autoload/SpaceVim/health/*'), "fnamemodify(v:val,':t:r')")
let report = []

View File

@ -1,3 +1,11 @@
"=============================================================================
" clipboard.vim --- SpaceVim clipboard checker
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#health#clipboard#check() abort
let result = ['SpaceVim clipboard support check report:']
call add(result, 'Checking +clipboard:')

View File

@ -1,3 +1,10 @@
"=============================================================================
" environment.vim --- SpaceVim environment checker
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#health#environment#check() abort
let result = ['SpaceVim environment check report:']
call add(result, 'Current progpath: ' . v:progname . '(' . v:progpath . ')')

View File

@ -1,3 +1,10 @@
"=============================================================================
" lua.vim --- SpaceVim lua checker
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#health#lua#check() abort
let result = ['SpaceVim lua support check report:']
call add(result, 'Checking +lua:')

View File

@ -1,3 +1,10 @@
"=============================================================================
" python.vim --- SpaceVim python checker
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#health#python#check() abort
let result = ['SpaceVim python support check report:']
if has('nvim')

View File

@ -1,3 +1,11 @@
"=============================================================================
" issue.vim --- issue reporter for SpaceVim
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
let s:CMP = SpaceVim#api#import('vim#compatible')
function! SpaceVim#issue#report() abort

View File

@ -1,3 +1,11 @@
"=============================================================================
" layers.vim --- layers public API
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section Layers, layers
" SpaceVim support such layers:

View File

@ -1,3 +1,11 @@
"=============================================================================
" VersionControl.vim --- SpaceVim version control layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#VersionControl#config() abort
let g:_spacevim_mappings_space.g = get(g:_spacevim_mappings_space, 'g', {'name' : '+VersionControl/git'})
call SpaceVim#mapping#space#def('nnoremap', ['g', '.'], 'call call('

View File

@ -1,3 +1,11 @@
"=============================================================================
" autocomplete.vim --- SpaceVim autocomplete layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section autocomplete, autocomplete
" @parentsection layers

View File

@ -1,3 +1,11 @@
"=============================================================================
" chat.vim --- SpaceVim chat layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#chat#plugins() abort
return [
\ ['vim-chat/vim-chat',{ 'merged' : 0, 'loadconf' : 1}],

View File

@ -1,3 +1,11 @@
"=============================================================================
" checkers.vim --- SpaceVim checkers layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section checkers, layer-checkers
" @parentsection layers

View File

@ -1,3 +1,12 @@
"=============================================================================
" chinese.vim --- SpaceVim chinese layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#chinese#plugins() abort
let plugins = [
\ ['yianwillis/vimcdoc', {'merged' : 0}],

View File

@ -1,3 +1,11 @@
"=============================================================================
" colorscheme.vim --- SpaceVim colorscheme layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section colorscheme, colorscheme
" @parentsection layers

View File

@ -1,3 +1,11 @@
"=============================================================================
" core.vim --- SpaceVim core layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#core#plugins() abort
return [
\ ['Shougo/vimproc.vim', {'build' : ['make']}],

View File

@ -1,3 +1,11 @@
"=============================================================================
" banner.vim --- SpaceVim core#banner layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
scriptencoding utf-8
function! SpaceVim#layers#core#banner#config() abort
let g:_spacevim_welcome_banners = [

View File

@ -1,10 +1,10 @@
" ============================================================================
" File: statusline.vim
" Description: SpaceVim core#statusline layer
" Author: Shidong Wang <wsdjeg@outlook.com>
" Website: https://spacevim.org
" License: GPLv3
" ============================================================================
"=============================================================================
" statusline.vim --- SpaceVim statusline
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
" statusline
scriptencoding utf-8

View File

@ -1,7 +1,7 @@
"=============================================================================
" tabline.vim --- core#tabline Layer file for SpaceVim
" Copyright (c) 2012-2016 Shidong Wang & Contributors
" Author: Shidong Wang < wsdjeg at 163.com >
" tabline.vim --- SpaceVim tabline
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================

View File

@ -1,3 +1,11 @@
"=============================================================================
" cscope.vim --- SpaceVim cscope layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#cscope#plugins() abort
let plugins = [
\ ['SpaceVim/cscope.vim'],

View File

@ -1,3 +1,11 @@
"=============================================================================
" ctrlp.vim --- SpaceVim ctrlp layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#ctrlp#plugins() abort
let plugins = [
\ ['ctrlpvim/ctrlp.vim', {'loadconf' : 1}],

View File

@ -1,3 +1,11 @@
"=============================================================================
" debug.vim --- SpaceVim debug layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#debug#plugins() abort
let plugins = []
call add(plugins,['idanarye/vim-vebugger', {'merged' : 0}])

View File

@ -1,3 +1,11 @@
"=============================================================================
" default.vim --- SpaceVim default layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section Default, default
" @parentsection layers

View File

@ -1,3 +1,11 @@
"=============================================================================
" denite.vim --- SpaceVim denite layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#denite#plugins() abort
return [
\ ['Shougo/denite.nvim',{ 'merged' : 0, 'loadconf' : 1}],

View File

@ -1,3 +1,12 @@
"=============================================================================
" edit.vim --- SpaceVim edit layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
scriptencoding utf-8
let s:PASSWORD = SpaceVim#api#import('password')
let s:NUMBER = SpaceVim#api#import('data#number')

View File

@ -1,3 +1,11 @@
"=============================================================================
" exprfold.vim --- SpaceVim exprfold layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section exprfold, layer-exprfold
" @parentsection layers

View File

@ -1,3 +1,11 @@
"=============================================================================
" games.vim --- SpaceVim games layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#games#plugins() abort
let plugins = []
call add(plugins, ['wsdjeg/vim2048', {'merged' : 0}])

View File

@ -1,3 +1,11 @@
"=============================================================================
" git.vim --- SpaceVim git layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#git#plugins() abort
let plugins = [
\ ['junegunn/gv.vim', { 'on_cmd' : ['GV']}],

View File

@ -1,3 +1,12 @@
"=============================================================================
" incsearch.vim --- SpaceVim incsearch layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section incsearch, layer-incsearch
" @parentsection layers

View File

@ -1,3 +1,11 @@
"=============================================================================
" indentmove.vim --- SpaceVim indentmove layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section indentmove, layer-indentmove
" @parentsection layers

View File

@ -1,3 +1,11 @@
"=============================================================================
" japanese.vim --- SpaceVim japanese layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#japanese#plugins() abort
return [
\ ['vim-jp/vimdoc-ja'],

View File

@ -1,3 +1,11 @@
"=============================================================================
" lang.vim --- SpaceVim lang layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#plugins() abort
let plugins = [
\ ['digitaltoad/vim-jade', { 'on_ft' : ['jade']}],

View File

@ -1,3 +1,12 @@
"=============================================================================
" c.vim --- SpaceVim lang#c layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section lang#c, layer-lang-c
" @parentsection layers

View File

@ -1,3 +1,11 @@
"=============================================================================
" clojure.vim --- SpaceVim lang#clojure layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#clojure#plugins() abort
let plugins = []
if has('nvim')

View File

@ -1,3 +1,11 @@
"=============================================================================
" crystal.vim --- SpaceVim lang#crystal layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section lang#crystal, layer-lang-crystal
" @parentsection layers

View File

@ -1,3 +1,11 @@
"=============================================================================
" dart.vim --- SpaceVim lang#dart layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#dart#plugins() abort
let plugins = []
call add(plugins, ['dart-lang/dart-vim-plugin', {'merged' : 0}])

View File

@ -1,3 +1,11 @@
"=============================================================================
" elixir.vim --- SpaceVim lang#elixir layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section lang#elixir, layer-lang-elixir
" @parentsection layers

View File

@ -1,3 +1,11 @@
"=============================================================================
" go.vim --- SpaceVim lang#go layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section lang#go, layer-lang-go
" @parentsection layers

View File

@ -1,3 +1,11 @@
"=============================================================================
" haskell.vim --- SpaceVim lang#haskell layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#haskell#plugins() abort
let plugins = [
\ ['neovimhaskell/haskell-vim', { 'on_ft': 'haskell' }],

View File

@ -1,3 +1,11 @@
"=============================================================================
" html.vim --- SpaceVim lang#html layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#html#plugins() abort
let plugins = [
\ ['groenewege/vim-less', { 'on_ft' : ['less']}],

View File

@ -1,3 +1,11 @@
"=============================================================================
" java.vim --- SpaceVim lang#java layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section lang#java, layer-lang-java
" @parentsection layers

View File

@ -1,3 +1,11 @@
"=============================================================================
" javascript.vim --- SpaceVim lang#javascript layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#javascript#plugins() abort
let plugins = [
\ ['MaxMEllon/vim-jsx-pretty', { 'on_ft': 'javascript' }],

View File

@ -5,6 +5,7 @@
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section lang#julia, layer-lang-julia
" @parentsection layers

View File

@ -1,3 +1,11 @@
"=============================================================================
" kotlin.vim --- SpaceVim lang#kotlin layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section lang#kotlin, layer-lang-kotlin
" @parentsection layers

View File

@ -1,3 +1,12 @@
"=============================================================================
" lisp.vim --- SpaceVim lang#lisp layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#lisp#plugins() abort
let plugins = []
call add(plugins,['l04m33/vlime', {'on_ft' : 'lisp', 'rtp': 'vim'}])

View File

@ -1,3 +1,11 @@
"=============================================================================
" lua.vim --- SpaceVim lang#lua layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section lang#lua, layer-lang-lua
" @parentsection layers

View File

@ -1,3 +1,12 @@
"=============================================================================
" ocaml.vim --- SpaceVim lang#ocaml layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section lang#ocaml, layer-lang-ocaml
" @parentsection layers

View File

@ -1,3 +1,12 @@
"=============================================================================
" perl.vim --- SpaceVim lang#perl layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#perl#plugins() abort
let plugins = []
call add(plugins, ['WolfgangMehner/perl-support', {'on_ft' : 'perl'}])

View File

@ -1,7 +1,7 @@
"=============================================================================
" pony.vim --- pony Layer file for SpaceVim
" Copyright (c) 2012-2016 kShidong Wang & Contributors
" Author: Bambang Purnomsoidi D. P, < bambangpdp at gmail.com >
" pony.vim --- SpaceVim lang#pony layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================

View File

@ -1,3 +1,12 @@
"=============================================================================
" ps1.vim --- SpaceVim lang#ps1 layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#ps1#plugins() abort
let plugins = []
call add(plugins, ['PProvost/vim-ps1'])

View File

@ -1,3 +1,11 @@
"=============================================================================
" puppet.vim --- SpaceVim lang#puppet layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section lang#puppet, layer-lang-puppet
" @parentsection layers

View File

@ -1,3 +1,11 @@
"=============================================================================
" python.vim --- SpaceVim lang#python layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section lang#python, layer-lang-python
" @parentsection layers

View File

@ -1,3 +1,12 @@
"=============================================================================
" rust.vim --- SpaceVim lang#rust layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section lang#rust, layer-lang-rust
" @parentsection layers

View File

@ -1,3 +1,11 @@
"=============================================================================
" scala.vim --- SpaceVim lang#scala layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section lang#scala, layer-lang-scala
" @parentsection layers

View File

@ -1,3 +1,11 @@
"=============================================================================
" sh.vim --- SpaceVim lang#sh layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#sh#plugins() abort
let l:plugins = []
call add(l:plugins, ['chrisbra/vim-zsh', { 'on_ft' : 'zsh' }])

View File

@ -1,3 +1,11 @@
"=============================================================================
" solidity.vim --- SpaceVim solidity layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#solidity#plugins() abort
let plugins = [
\ ['tomlion/vim-solidity', {'merged' : 0, 'on_ft' : 'solidity'}]

View File

@ -1,3 +1,12 @@
"=============================================================================
" swig.vim --- SpaceVim lang#swig layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#swig#plugins() abort
let plugins = []
call add(plugins, ['SpaceVim/vim-swig'])

View File

@ -1,3 +1,12 @@
"=============================================================================
" tmux.vim --- SpaceVim tmux layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section lang#tmux, layer-lang-tmux
" @parentsection layers

View File

@ -1,3 +1,12 @@
"=============================================================================
" vim.vim --- SpaceVim vim layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#vim#plugins() abort
let plugins = [
\ ['syngan/vim-vimlint', { 'on_ft' : 'vim'}],

View File

@ -1,3 +1,12 @@
"=============================================================================
" xml.vim --- SpaceVim lang#xml layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section lang#xml, layer-lang-xml
" @parentsection layers

View File

@ -1,3 +1,11 @@
"=============================================================================
" lsp.vim --- SpaceVim lsp layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lsp#plugins() abort
let plugins = []

View File

@ -1,3 +1,11 @@
"=============================================================================
" mail.vim --- SpaceVim mail layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#mail#plugins() abort
return [
\ ['vim-mail/vim-mail',{ 'merged' : 0, 'loadconf' : 1}],

View File

@ -1,3 +1,11 @@
"=============================================================================
" operator.vim --- SpaceVim operator layer
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section operator, layer-operator
" @parentsection layers

Some files were not shown because too many files have changed in this diff Show More