aboutsummaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2021-12-05 14:33:59 +0800
committerjdhao <jdhao@hotmail.com>2021-12-05 14:33:59 +0800
commit752dbcbe2d6e344b8f317a2ad79913c692acf24b (patch)
treed90bad943d3d3c3975e48d08d03076952436fb2b /autoload
parent0be331b28e7481878a44997eff2c619cff34bb95 (diff)
remove mentioning of vim-airline
Diffstat (limited to 'autoload')
-rw-r--r--autoload/utils.vim6
1 files changed, 0 insertions, 6 deletions
diff --git a/autoload/utils.vim b/autoload/utils.vim
index d1933a2..d9a8a32 100644
--- a/autoload/utils.vim
+++ b/autoload/utils.vim
@@ -27,12 +27,6 @@ function! utils#HasColorscheme(name) abort
return !empty(globpath(&runtimepath, l:pat))
endfunction
-" Check if an Airline theme exists in runtimepath.
-function! utils#HasAirlinetheme(name) abort
- let l:pat = printf('autoload/airline/themes/%s.vim', a:name)
- return !empty(globpath(&runtimepath, l:pat))
-endfunction
-
" Generate random integers in the range [Low, High] in pure vim script,
" adapted from https://stackoverflow.com/a/12739441/6064933
function! utils#RandInt(Low, High) abort