Server IP : 85.214.239.14 / Your IP : 3.139.236.213 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/cwd/usr/share/vim/vim90/indent/ |
Upload File : |
" Vim indent file " Language: C# " Maintainer: Nick Jensen <nickspoon@gmail.com> " Former Maintainers: Aquila Deus " Johannes Zellner <johannes@zellner.org> " Last Change: 2020-03-26 " License: Vim (see :h license) " Repository: https://github.com/nickspoons/vim-cs if exists('b:did_indent') finish endif let b:did_indent = 1 let s:save_cpo = &cpoptions set cpoptions&vim setlocal indentexpr=GetCSIndent(v:lnum) function! s:IsCompilerDirective(line) " Exclude #region and #endregion - these should be indented normally return a:line =~# '^\s*#' && !s:IsRegionDirective(a:line) endf function! s:IsRegionDirective(line) return a:line =~# '^\s*#\s*region' || a:line =~# '^\s*#\s*endregion' endf function! s:IsAttributeLine(line) return a:line =~# '^\s*\[[A-Za-z]' && a:line =~# '\]$' endf function! s:FindPreviousNonCompilerDirectiveLine(start_lnum) for delta in range(0, a:start_lnum) let lnum = a:start_lnum - delta let line = getline(lnum) if !s:IsCompilerDirective(line) && !s:IsRegionDirective(line) return lnum endif endfor return 0 endf function! GetCSIndent(lnum) abort " Hit the start of the file, use zero indent. if a:lnum == 0 return 0 endif let this_line = getline(a:lnum) " Compiler directives use zero indent if so configured. let is_first_col_macro = s:IsCompilerDirective(this_line) && stridx(&l:cinkeys, '0#') >= 0 if is_first_col_macro return cindent(a:lnum) endif let lnum = s:FindPreviousNonCompilerDirectiveLine(a:lnum - 1) let previous_code_line = getline(lnum) if s:IsAttributeLine(previous_code_line) return indent(lnum) elseif s:IsRegionDirective(this_line) return cindent(lnum) else return cindent(a:lnum) endif endfunction let b:undo_indent = 'setlocal indentexpr<' let &cpoptions = s:save_cpo unlet s:save_cpo " vim:et:sw=2:sts=2