use more idiomatic code style

This commit is contained in:
Marco Hinz 2013-04-29 15:06:40 +02:00
parent 7fc07a6cb6
commit 803b0adbbf
3 changed files with 11 additions and 11 deletions

View file

@ -24,9 +24,9 @@ function! startify#get_sep() abort
return !exists('+shellslash') || &shellslash ? '/' : '\'
endfunction
function! startify#process_skiplist(arg) abort
function! startify#is_in_skiplist(arg) abort
for regexp in g:startify_skiplist
if a:arg =~# regexp
if (a:arg =~# regexp)
return 1
endif
endfor
@ -36,7 +36,7 @@ function! startify#save_session(...) abort
if !isdirectory(g:startify_session_dir)
if exists('*mkdir')
echo 'The session directory does not exist: '. g:startify_session_dir .'. Create it? [y/n]' | redraw
if nr2char(getchar()) == 'y'
if (nr2char(getchar()) == 'y')
call mkdir(g:startify_session_dir, 'p')
else
echo

View file

@ -28,13 +28,13 @@ command! -nargs=0 -bar Startify enew | call s:insane_in_the_membrane()
function! s:insane_in_the_membrane() abort
if !empty(v:servername) && exists('g:startify_skiplist_server')
for servname in g:startify_skiplist_server
if servname == v:servername
if (servname == v:servername)
return
endif
endfor
endif
setlocal nonumber noswapfile bufhidden=wipe
if v:version >= 703
if (v:version >= 703)
setlocal norelativenumber
endif
if get(g:, 'startify_unlisted_buffer', 1)
@ -57,13 +57,13 @@ function! s:insane_in_the_membrane() abort
endif
for fname in v:oldfiles
let expfname = expand(fname)
if !filereadable(expfname) || (exists('g:startify_skiplist') && startify#process_skiplist(expfname))
if !filereadable(expfname) || (exists('g:startify_skiplist') && startify#is_in_skiplist(expfname))
continue
endif
call append('$', ' ['. cnt .']'. repeat(' ', 3 - strlen(string(cnt))) . fname)
execute 'nnoremap <buffer> '. cnt .' :edit '. startify#escape(fname) .' <bar> lcd %:h<cr>'
let cnt += 1
if cnt == numfiles
if (cnt == numfiles)
break
endif
endfor
@ -103,7 +103,7 @@ function! s:insane_in_the_membrane() abort
nnoremap <buffer> <cr> :normal <c-r><c-w><cr>
nnoremap <buffer> <2-LeftMouse> :execute 'normal '. matchstr(getline('.'), '\w\+')<cr>
nnoremap <buffer> q
\ :if len(filter(range(0, bufnr('$')), 'buflisted(v:val)')) > 1 <bar>
\ :if (len(filter(range(0, bufnr('$')), 'buflisted(v:val)')) > 1) <bar>
\ bd <bar>
\ else <bar>
\ quit <bar>
@ -125,7 +125,7 @@ function! s:set_cursor() abort
let s:line_old = exists('s:line_new') ? s:line_new : 5
let s:line_new = line('.')
if empty(getline(s:line_new))
if s:line_new > s:line_old
if (s:line_new > s:line_old)
let s:line_new += 1
call cursor(s:line_new, 5) " going down
else

View file

@ -9,9 +9,9 @@ endif
let s:sep = startify#get_sep()
syntax match StartifySpecial /\V<empty buffer>\|<quit>/
syntax match StartifySpecial /\V<empty buffer>\|<quit>/
syntax match StartifyBracket /\[\|\]/
syntax match StartifyNumber /\v\[[iq[:digit:]]+\]/hs=s+1,he=e-1 contains=StartifyBracket
syntax match StartifyNumber /\v\[[iq[:digit:]]+\]/hs=s+1,he=e-1 contains=StartifyBracket
execute 'syntax match StartifySlash /\'. s:sep .'/'
execute 'syntax match StartifyPath /\%9c.*\'. s:sep .'/ contains=StartifySlash'