improve autoload/lightline.vim, autoload/lightline/tab.vim: use single quotes

This commit is contained in:
itchyny
2015-01-17 12:43:49 +09:00
parent 3b1730aa95
commit 83d7d8d8a6
3 changed files with 7 additions and 7 deletions

View File

@@ -3,7 +3,7 @@
" Version: 0.0
" Author: itchyny
" License: MIT License
" Last Change: 2014/12/17 00:14:04.
" Last Change: 2015/01/04 22:44:37.
" =============================================================================
let s:save_cpo = &cpo
@@ -145,7 +145,7 @@ function! s:nr(x) abort
endfunction
function! s:rgb(r, g, b) abort
return printf("#%02x%02x%02x", a:r, a:g, a:b)
return printf('#%02x%02x%02x', a:r, a:g, a:b)
endfunction
function! s:upconvert(nr) abort