diff --git a/LICENSE b/LICENSE index 9a5a8b73..49ba02fc 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (C) 2013-2014 Bailey Ling +Copyright (C) 2013-2015 Bailey Ling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/README.md b/README.md index fafd4116..ea649fc3 100644 --- a/README.md +++ b/README.md @@ -178,7 +178,7 @@ Contributions and pull requests are welcome. Please take note of the following # License -MIT License. Copyright (c) 2013-2014 Bailey Ling. +MIT License. Copyright (c) 2013-2015 Bailey Ling. [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/bling/vim-airline/trend.png)](https://bitdeli.com/free "Bitdeli Badge") diff --git a/autoload/airline.vim b/autoload/airline.vim index 61df8511..1a4e54af 100644 --- a/autoload/airline.vim +++ b/autoload/airline.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 let g:airline_statusline_funcrefs = get(g:, 'airline_statusline_funcrefs', []) diff --git a/autoload/airline/builder.vim b/autoload/airline/builder.vim index 5f4e080c..0c35a31e 100644 --- a/autoload/airline/builder.vim +++ b/autoload/airline/builder.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 let s:prototype = {} diff --git a/autoload/airline/debug.vim b/autoload/airline/debug.vim index 28424a65..fb195df1 100644 --- a/autoload/airline/debug.vim +++ b/autoload/airline/debug.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 function! airline#debug#profile1() diff --git a/autoload/airline/deprecation.vim b/autoload/airline/deprecation.vim index cf7e7872..7669549e 100644 --- a/autoload/airline/deprecation.vim +++ b/autoload/airline/deprecation.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 function! airline#deprecation#check() diff --git a/autoload/airline/extensions.vim b/autoload/airline/extensions.vim index 22a91cfe..4f6848f6 100644 --- a/autoload/airline/extensions.vim +++ b/autoload/airline/extensions.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 let s:ext = {} diff --git a/autoload/airline/extensions/branch.vim b/autoload/airline/extensions/branch.vim index 6e82d664..6decaf16 100644 --- a/autoload/airline/extensions/branch.vim +++ b/autoload/airline/extensions/branch.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 let s:has_fugitive = exists('*fugitive#head') diff --git a/autoload/airline/extensions/bufferline.vim b/autoload/airline/extensions/bufferline.vim index 6dc97fe7..f2727c39 100644 --- a/autoload/airline/extensions/bufferline.vim +++ b/autoload/airline/extensions/bufferline.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 if !exists('*bufferline#get_status_string') diff --git a/autoload/airline/extensions/commandt.vim b/autoload/airline/extensions/commandt.vim index e549f27b..8fce75db 100644 --- a/autoload/airline/extensions/commandt.vim +++ b/autoload/airline/extensions/commandt.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 if !get(g:, 'command_t_loaded', 0) diff --git a/autoload/airline/extensions/csv.vim b/autoload/airline/extensions/csv.vim index 2c296ab3..f2689dde 100644 --- a/autoload/airline/extensions/csv.vim +++ b/autoload/airline/extensions/csv.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 if !get(g:, 'loaded_csv', 0) && !exists(':Table') diff --git a/autoload/airline/extensions/ctrlp.vim b/autoload/airline/extensions/ctrlp.vim index ef7da681..c81fc9c9 100644 --- a/autoload/airline/extensions/ctrlp.vim +++ b/autoload/airline/extensions/ctrlp.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 if !get(g:, 'loaded_ctrlp', 0) diff --git a/autoload/airline/extensions/default.vim b/autoload/airline/extensions/default.vim index faa1fb68..51f1c0a2 100644 --- a/autoload/airline/extensions/default.vim +++ b/autoload/airline/extensions/default.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 let s:section_truncate_width = get(g:, 'airline#extensions#default#section_truncate_width', { diff --git a/autoload/airline/extensions/eclim.vim b/autoload/airline/extensions/eclim.vim index e2f6531f..9380447f 100644 --- a/autoload/airline/extensions/eclim.vim +++ b/autoload/airline/extensions/eclim.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 if !exists(':ProjectCreate') diff --git a/autoload/airline/extensions/example.vim b/autoload/airline/extensions/example.vim index 4a1932d8..5bf21775 100644 --- a/autoload/airline/extensions/example.vim +++ b/autoload/airline/extensions/example.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 " we don't actually want this loaded :P diff --git a/autoload/airline/extensions/hunks.vim b/autoload/airline/extensions/hunks.vim index 968fd66f..7982d505 100644 --- a/autoload/airline/extensions/hunks.vim +++ b/autoload/airline/extensions/hunks.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 if !get(g:, 'loaded_signify', 0) && !get(g:, 'loaded_gitgutter', 0) && !get(g:, 'loaded_changes', 0) diff --git a/autoload/airline/extensions/netrw.vim b/autoload/airline/extensions/netrw.vim index debb0888..728dfddd 100644 --- a/autoload/airline/extensions/netrw.vim +++ b/autoload/airline/extensions/netrw.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 if !exists(':NetrwSettings') diff --git a/autoload/airline/extensions/nrrwrgn.vim b/autoload/airline/extensions/nrrwrgn.vim index 338f6e05..64a7fee8 100644 --- a/autoload/airline/extensions/nrrwrgn.vim +++ b/autoload/airline/extensions/nrrwrgn.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 if !get(g:, 'loaded_nrrw_rgn', 0) diff --git a/autoload/airline/extensions/promptline.vim b/autoload/airline/extensions/promptline.vim index 50b9708f..98513a67 100644 --- a/autoload/airline/extensions/promptline.vim +++ b/autoload/airline/extensions/promptline.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 if !exists(':PromptlineSnapshot') diff --git a/autoload/airline/extensions/quickfix.vim b/autoload/airline/extensions/quickfix.vim index 2be4077e..b358329d 100644 --- a/autoload/airline/extensions/quickfix.vim +++ b/autoload/airline/extensions/quickfix.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 let g:airline#extensions#quickfix#quickfix_text = 'Quickfix' diff --git a/autoload/airline/extensions/syntastic.vim b/autoload/airline/extensions/syntastic.vim index f7179af8..92584813 100644 --- a/autoload/airline/extensions/syntastic.vim +++ b/autoload/airline/extensions/syntastic.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 if !exists(':SyntasticCheck') diff --git a/autoload/airline/extensions/tabline.vim b/autoload/airline/extensions/tabline.vim index df990030..e898a2c5 100644 --- a/autoload/airline/extensions/tabline.vim +++ b/autoload/airline/extensions/tabline.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 scriptencoding utf-8 diff --git a/autoload/airline/extensions/tabline/default.vim b/autoload/airline/extensions/tabline/default.vim index 4f1ed40e..6af72740 100644 --- a/autoload/airline/extensions/tabline/default.vim +++ b/autoload/airline/extensions/tabline/default.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 let s:fmod = get(g:, 'airline#extensions#tabline#fnamemod', ':~:.') diff --git a/autoload/airline/extensions/tabline/unique_tail.vim b/autoload/airline/extensions/tabline/unique_tail.vim index e4a790d9..5351fbaf 100644 --- a/autoload/airline/extensions/tabline/unique_tail.vim +++ b/autoload/airline/extensions/tabline/unique_tail.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 function! airline#extensions#tabline#unique_tail#format(bufnr, buffers) diff --git a/autoload/airline/extensions/tabline/unique_tail_improved.vim b/autoload/airline/extensions/tabline/unique_tail_improved.vim index e96deeb2..4029f11a 100644 --- a/autoload/airline/extensions/tabline/unique_tail_improved.vim +++ b/autoload/airline/extensions/tabline/unique_tail_improved.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 scriptencoding utf-8 diff --git a/autoload/airline/extensions/tagbar.vim b/autoload/airline/extensions/tagbar.vim index 56919a85..9e5b65d1 100644 --- a/autoload/airline/extensions/tagbar.vim +++ b/autoload/airline/extensions/tagbar.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 if !exists(':TagbarToggle') diff --git a/autoload/airline/extensions/tmuxline.vim b/autoload/airline/extensions/tmuxline.vim index 363709bc..db747023 100644 --- a/autoload/airline/extensions/tmuxline.vim +++ b/autoload/airline/extensions/tmuxline.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 if !exists(':Tmuxline') diff --git a/autoload/airline/extensions/undotree.vim b/autoload/airline/extensions/undotree.vim index f577ffd8..532f1df0 100644 --- a/autoload/airline/extensions/undotree.vim +++ b/autoload/airline/extensions/undotree.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 if !exists(':UndotreeToggle') diff --git a/autoload/airline/extensions/unite.vim b/autoload/airline/extensions/unite.vim index d230b6fb..d1ff2b79 100644 --- a/autoload/airline/extensions/unite.vim +++ b/autoload/airline/extensions/unite.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 if !get(g:, 'loaded_unite', 0) diff --git a/autoload/airline/extensions/virtualenv.vim b/autoload/airline/extensions/virtualenv.vim index 27f847e3..af47f029 100644 --- a/autoload/airline/extensions/virtualenv.vim +++ b/autoload/airline/extensions/virtualenv.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 if !isdirectory($VIRTUAL_ENV) diff --git a/autoload/airline/extensions/whitespace.vim b/autoload/airline/extensions/whitespace.vim index f535e45e..f7b63b21 100644 --- a/autoload/airline/extensions/whitespace.vim +++ b/autoload/airline/extensions/whitespace.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 " http://got-ravings.blogspot.com/2008/10/vim-pr0n-statusline-whitespace-flags.html diff --git a/autoload/airline/highlighter.vim b/autoload/airline/highlighter.vim index 17a6cf51..02bccbb0 100644 --- a/autoload/airline/highlighter.vim +++ b/autoload/airline/highlighter.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 let s:is_win32term = (has('win32') || has('win64')) && !has('gui_running') diff --git a/autoload/airline/init.vim b/autoload/airline/init.vim index a990e78b..7b1c989c 100644 --- a/autoload/airline/init.vim +++ b/autoload/airline/init.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 function! s:check_defined(variable, default) diff --git a/autoload/airline/parts.vim b/autoload/airline/parts.vim index b0356b1d..08af4d3c 100644 --- a/autoload/airline/parts.vim +++ b/autoload/airline/parts.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 let s:parts = {} diff --git a/autoload/airline/section.vim b/autoload/airline/section.vim index 06d930f4..4ab7b268 100644 --- a/autoload/airline/section.vim +++ b/autoload/airline/section.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 call airline#init#bootstrap() diff --git a/autoload/airline/themes.vim b/autoload/airline/themes.vim index 07e03241..9387954e 100644 --- a/autoload/airline/themes.vim +++ b/autoload/airline/themes.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 " generates a dictionary which defines the colors for each highlight group diff --git a/autoload/airline/util.vim b/autoload/airline/util.vim index a04bd0bf..10aac5cb 100644 --- a/autoload/airline/util.vim +++ b/autoload/airline/util.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 call airline#init#bootstrap() diff --git a/doc/airline.txt b/doc/airline.txt index 2dc62b87..66aa6d4e 100644 --- a/doc/airline.txt +++ b/doc/airline.txt @@ -795,7 +795,7 @@ Contributions and pull requests are welcome. ============================================================================== LICENSE *airline-license* -MIT License. Copyright © 2013-2014 Bailey Ling. +MIT License. Copyright © 2013-2015 Bailey Ling. vim:tw=78:ts=8:ft=help:norl: diff --git a/plugin/airline.vim b/plugin/airline.vim index b75185da..3b1a7430 100644 --- a/plugin/airline.vim +++ b/plugin/airline.vim @@ -1,4 +1,4 @@ -" MIT License. Copyright (c) 2013-2014 Bailey Ling. +" MIT License. Copyright (c) 2013-2015 Bailey Ling. " vim: et ts=2 sts=2 sw=2 if &cp || v:version < 702 || (exists('g:loaded_airline') && g:loaded_airline)