aboutsummaryrefslogtreecommitdiffstats
path: root/src/_clang-format
blob: ec30e944dd53821a3c55213ea7f5df11036cc3f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#compdef clang-format
# ------------------------------------------------------------------------------
# Copyright (c) 2022 Github zsh-users - https://github.com/zsh-users
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
# ------------------------------------------------------------------------------
# Description
# -----------
#
#  Completion script for clang-format v20.1.2 (https://clang.llvm.org/docs/ClangFormat.html)
#
# ------------------------------------------------------------------------------
# Authors
# -------
#
#  * Shohei Yoshida (https://github.com/syohex) <syohex@gmail.com>
#
# ------------------------------------------------------------------------------

local -a styles=(LLVM GNU Google Chromium Microsoft)

_arguments \
  '(- *)--help[Display available options]' \
  '(- *)--help-hidden[Display available more options]' \
  '(- *)--help-list[Display list of available options]' \
  '(- *)--help-list-hidden[Display list of more available options]' \
  '--Wclang-format-violations[Warnings about individual formatting changes needed]' \
  '--Werror=[If set, changes formatting warnings to errors]' \
  '*--Wno-error=[If set, do not error out on the specified warning type]:warn' \
  '--assume-filename=[Set filename used to determine the language and to find .clang-format file]: :_files' \
  '--cursor=[The position of the cursor when invoking clang-format from an editor integration]:pos' \
  '(-n --dry-run)'{-n,--dry-run}'[If set, do not actually make the formatting changes]' \
  '--dump-config[Dump configuration options to stdout and exit]' \
  '--fail-on-incomplete-format[If set, fail with exit code 1 on incomplete format]' \
  '--fallback-style=[The name of the predefined style used as a fallback]: :'"($styles)" \
  '--ferror-limit=[Set the maximum number of clang-format errors to emit before stopping]:limit' \
  '*--files=[Provide a list of files to run clang-format]: :_files' \
  '--fno-color-diagnostics[If set, not to print diagnostics in color]' \
  '-i[Inplace edit files, if specified]' \
  '--length=[Format a range of this length(in bytes)]:bytes' \
  '--lines=[format a range of lines]:format' \
  '--list-ignored[List ignored files]' \
  '--offset=[Format a range starting at this byte offset]' \
  '--output-replacements-xml[Output replacements as XML]' \
  '--print-all-options[Print all option values after command line parsing]' \
  '--print-options[Print non default options after command line parsing]' \
  '--qualifier-alignment=[If set, overrides the qualifier alignment style determined by the QualifierAlignment style flag]' \
  '--sort-includes[If set, overrides the include sorting behavior determined by the SortIncludes style flag]' \
  '--style=[Set coding style]: :'"($styles)" \
  '--verbose[If set, show the list of processed files]' \
  '(- *)--version[Display the version of this program]' \
  '*: :_files'

# Local Variables:
# mode: Shell-Script
# sh-indentation: 2
# indent-tabs-mode: nil
# sh-basic-offset: 2
# End:
# vim: ft=zsh sw=2 ts=2 et