Always use dot operator to concatenate strings

Vim automatically adds a space between strings when concatenating them
without the dot operator. This is not obvious so we always use the dot
operator.
Minor coding style changes when writing statements on multiple lines to
be more consistent.
This commit is contained in:
micbou 2017-01-01 13:57:03 +01:00
parent c394895c4e
commit c67c581d81
No known key found for this signature in database
GPG Key ID: C7E8FD1F3BDA1E05

View File

@ -333,8 +333,8 @@ function! s:AllowedToCompleteInBuffer( buffer )
let buffer_filetype = getbufvar( a:buffer, '&filetype' ) let buffer_filetype = getbufvar( a:buffer, '&filetype' )
if empty( buffer_filetype ) || if empty( buffer_filetype ) ||
\ getbufvar( a:buffer, '&buftype' ) ==# 'nofile' || \ getbufvar( a:buffer, '&buftype' ) ==# 'nofile' ||
\ buffer_filetype ==# 'qf' \ buffer_filetype ==# 'qf'
return 0 return 0
endif endif
@ -373,9 +373,9 @@ function! s:SetUpCommands()
command! YcmShowDetailedDiagnostic call s:ShowDetailedDiagnostic() command! YcmShowDetailedDiagnostic call s:ShowDetailedDiagnostic()
command! YcmDebugInfo call s:DebugInfo() command! YcmDebugInfo call s:DebugInfo()
command! -nargs=* -complete=custom,youcompleteme#LogsComplete command! -nargs=* -complete=custom,youcompleteme#LogsComplete
\ YcmToggleLogs call s:ToggleLogs(<f-args>) \ YcmToggleLogs call s:ToggleLogs(<f-args>)
command! -nargs=* -complete=custom,youcompleteme#SubCommandsComplete command! -nargs=* -complete=custom,youcompleteme#SubCommandsComplete
\ YcmCompleter call s:CompleterCommand(<f-args>) \ YcmCompleter call s:CompleterCommand(<f-args>)
command! YcmForceCompileAndDiagnostics call s:ForceCompileAndDiagnostics() command! YcmForceCompileAndDiagnostics call s:ForceCompileAndDiagnostics()
command! YcmDiags call s:ShowDiagnostics() command! YcmDiags call s:ShowDiagnostics()
endfunction endfunction
@ -438,9 +438,9 @@ function! s:DisableOnLargeFile( filename )
let threshold = g:ycm_disable_for_files_larger_than_kb * 1024 let threshold = g:ycm_disable_for_files_larger_than_kb * 1024
if threshold > 0 && getfsize( a:filename ) > threshold if threshold > 0 && getfsize( a:filename ) > threshold
exec s:python_command "vimsupport.PostVimMessage(" exec s:python_command "vimsupport.PostVimMessage(" .
\ "'YouCompleteMe is disabled in this buffer;" \ "'YouCompleteMe is disabled in this buffer; " .
\ "the file exceeded the max size (see YCM options).')" \ "the file exceeded the max size (see YCM options).' )"
let b:ycm_largefile = 1 let b:ycm_largefile = 1
endif endif
endfunction endfunction
@ -498,7 +498,7 @@ function! s:OnBufferUnload()
endif endif
let deleted_buffer_file = expand( '<afile>:p' ) let deleted_buffer_file = expand( '<afile>:p' )
exec s:python_command "ycm_state.OnBufferUnload(" exec s:python_command "ycm_state.OnBufferUnload(" .
\ "vim.eval( 'deleted_buffer_file' ) )" \ "vim.eval( 'deleted_buffer_file' ) )"
endfunction endfunction
@ -757,7 +757,7 @@ function! youcompleteme#OmniComplete( findstart, base )
return -2 return -2
endif endif
let s:omnifunc_mode = 1 let s:omnifunc_mode = 1
exec s:python_command "ycm_state.CreateCompletionRequest(" exec s:python_command "ycm_state.CreateCompletionRequest(" .
\ "force_semantic = True )" \ "force_semantic = True )"
return s:Pyeval( 'base.CompletionStartColumn()' ) return s:Pyeval( 'base.CompletionStartColumn()' )
else else
@ -813,15 +813,15 @@ function! s:CompleterCommand(...)
let arguments = arguments[1:] let arguments = arguments[1:]
endif endif
exec s:python_command "ycm_state.SendCommandRequest(" exec s:python_command "ycm_state.SendCommandRequest(" .
\ "vim.eval( 'l:arguments' ), vim.eval( 'l:completer' ) ) " \ "vim.eval( 'l:arguments' ), vim.eval( 'l:completer' ) )"
endfunction endfunction
function! youcompleteme#OpenGoToList() function! youcompleteme#OpenGoToList()
exec s:python_command "vimsupport.PostVimMessage(" exec s:python_command "vimsupport.PostVimMessage(" .
\ "'WARNING: youcompleteme#OpenGoToList function is deprecated." \ "'WARNING: youcompleteme#OpenGoToList function is deprecated. " .
\ "Do NOT use it.')" \ "Do NOT use it.' )"
exec s:python_command "vimsupport.OpenQuickFixList( True, True )" exec s:python_command "vimsupport.OpenQuickFixList( True, True )"
endfunction endfunction
@ -838,8 +838,8 @@ endfunction
function! s:ForceCompile() function! s:ForceCompile()
if !s:Pyeval( 'ycm_state.NativeFiletypeCompletionUsable()' ) if !s:Pyeval( 'ycm_state.NativeFiletypeCompletionUsable()' )
echom "Native filetype completion not supported for current file, " echom "Native filetype completion not supported for current file, " .
\ . "cannot force recompilation." \ "cannot force recompilation."
return 0 return 0
endif endif