mirror of
https://github.com/itchyny/lightline.vim.git
synced 2025-11-17 16:03:41 -05:00
improve autoload/lightline.vim, autoload/lightline/tab.vim: use single quotes
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user