Server IP : 85.214.239.14 / Your IP : 18.219.126.46 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 : /usr/share/vim/vim90/indent/ |
Upload File : |
" Vim filetype indent file " Language: Zig " Upstream: https://github.com/ziglang/zig.vim " Only load this indent file when no other was loaded. if exists("b:did_indent") finish endif let b:did_indent = 1 if (!has("cindent") || !has("eval")) finish endif setlocal cindent " L0 -> 0 indent for jump labels (i.e. case statement in c). " j1 -> indenting for "javascript object declarations" " J1 -> see j1 " w1 -> starting a new line with `(` at the same indent as `(` " m1 -> if `)` starts a line, match its indent with the first char of its " matching `(` line " (s -> use one indent, when starting a new line after a trailing `(` setlocal cinoptions=L0,m1,(s,j1,J1,l1 " cinkeys: controls what keys trigger indent formatting " 0{ -> { " 0} -> } " 0) -> ) " 0] -> ] " !^F -> make CTRL-F (^F) reindent the current line when typed " o -> when <CR> or `o` is used " O -> when the `O` command is used setlocal cinkeys=0{,0},0),0],!^F,o,O setlocal indentexpr=GetZigIndent(v:lnum) let b:undo_indent = "setlocal cindent< cinkeys< cinoptions< indentexpr<" function! GetZigIndent(lnum) let curretLineNum = a:lnum let currentLine = getline(a:lnum) " cindent doesn't handle multi-line strings properly, so force no indent if currentLine =~ '^\s*\\\\.*' return -1 endif let prevLineNum = prevnonblank(a:lnum-1) let prevLine = getline(prevLineNum) " for lines that look like " }, " }; " try treating them the same as a } if prevLine =~ '\v^\s*},$' if currentLine =~ '\v^\s*};$' || currentLine =~ '\v^\s*}$' return indent(prevLineNum) - 4 endif return indent(prevLineNum-1) - 4 endif if currentLine =~ '\v^\s*},$' return indent(prevLineNum) - 4 endif if currentLine =~ '\v^\s*};$' return indent(prevLineNum) - 4 endif " cindent doesn't handle this case correctly: " switch (1): { " 1 => true, " ~ " ^---- indents to here if prevLine =~ '.*=>.*,$' && currentLine !~ '.*}$' return indent(prevLineNum) endif return cindent(a:lnum) endfunction