Commit 0fd83c4
authored
File tree
111 files changed
+5865
-2987
lines changed- 3rd
- locale
- en-us
- pt-br
- zh-cn
- zh-tw
- make
- meta
- 3rd/OpenResty/library
- template
- script
- config
- core
- completion
- diagnostics
- hover
- encoder
- glob
- parser
- proto
- provider
- pub
- service
- vm
- workspace
- test
- command
- completion
- definition
- diagnostics
- full
- hover
- tclient
- tests
- type_inference
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
111 files changed
+5865
-2987
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
11 | 16 | | |
12 | 17 | | |
13 | 18 | | |
| |||
Submodule EmmyLuaCodeStyle updated 63 files
- .github/workflows/build.yml+6
- 3rd/wildcards/LICENSE_1_0.txt+23
- 3rd/wildcards/include/config.hpp+25
- 3rd/wildcards/include/cpp_feature.hpp+564
- 3rd/wildcards/include/cx.hpp+21
- 3rd/wildcards/include/cx/algorithm.hpp+37
- 3rd/wildcards/include/cx/array.hpp+140
- 3rd/wildcards/include/cx/functional.hpp+56
- 3rd/wildcards/include/cx/iterator.hpp+119
- 3rd/wildcards/include/cx/string_view.hpp+137
- 3rd/wildcards/include/cx/tuple.hpp+162
- 3rd/wildcards/include/cx/utility.hpp+140
- 3rd/wildcards/include/wildcards.hpp.in+18
- 3rd/wildcards/include/wildcards/cards.hpp+269
- 3rd/wildcards/include/wildcards/match.hpp+1.1k
- 3rd/wildcards/include/wildcards/matcher.hpp+110
- 3rd/wildcards/include/wildcards/utility.hpp+59
- CodeFormatLib/src/CodeFormatLib.cpp+22-4
- CodeService/CMakeLists.txt+3-1
- CodeService/src/FormatElement/AlignmentElement.cpp+1-1
- CodeService/src/FormatElement/CallArgsListLayoutElement.cpp+227
- CodeService/src/FormatElement/DiagnosisContext.cpp+6-6
- CodeService/src/FormatElement/FormatElement.cpp+11-3
- CodeService/src/FormatElement/KeepBlankElement.cpp+2-1
- CodeService/src/FormatElement/KeepElement.cpp+5-6
- CodeService/src/FormatElement/KeepLineElement.cpp+1-1
- CodeService/src/FormatElement/LongExpressionLayoutElement.cpp+4-3
- CodeService/src/FormatElement/MaxLineElement.cpp+66
- CodeService/src/FormatElement/MaxSpaceElement.cpp+1-1
- CodeService/src/FormatElement/MinLineElement.cpp+1-1
- CodeService/src/FormatElement/RangeFormatContext.cpp+34
- CodeService/src/FormatElement/SerializeContext.cpp+31-24
- CodeService/src/LuaCodeStyleOptions.cpp+1
- CodeService/src/LuaEditorConfig.cpp+33-14
- CodeService/src/LuaFormatter.cpp+29-10
- CodeService/src/NameStyle/NameStyleRuleMatcher.cpp+5-2
- README.md+5-1
- README_EN.md+5-2
- Test/test_script/format_text/wait_format/expression.lua+50
- Test/test_script/format_text/wait_format_should_be/expression.lua+49-1
- Test/test_script/format_text/wait_format_should_be/local_or_assign.lua+2-2
- Util/CMakeLists.txt+1
- Util/src/FileFinder.cpp+35-1
- docs/format_config.md+4
- docs/format_config_EN.md+4
- docs/usage.md
- docs/usage_EN.md
- include/CodeService/DiagnosisType.h+13
- include/CodeService/FormatElement/AlignmentLayoutElement.h+3-3
- include/CodeService/FormatElement/CallArgsListLayoutElement.h+23
- include/CodeService/FormatElement/DiagnosisContext.h+2-2
- include/CodeService/FormatElement/FormatElement.h+2
- include/CodeService/FormatElement/FormatElementType.h+2
- include/CodeService/FormatElement/IndentOnLineBreakElement.h-2
- include/CodeService/FormatElement/KeepElement.h+5-1
- include/CodeService/FormatElement/MaxLineElement.h+16
- include/CodeService/FormatElement/RangeFormatContext.h+2
- include/CodeService/FormatElement/SerializeContext.h+3
- include/CodeService/LuaCodeStyleOptions.h+3-1
- include/CodeService/LuaDiagnosisInfo.h+2
- include/CodeService/LuaFormatter.h-1
- include/Util/FileFinder.h+3
- lua.template.editorconfig+7-5
- .gitignore+2-1
- .luarc.json+25
- .vscode/settings.json-4
- 3rd/lua/.gitignore-4
- 3rd/lua/Makefile-227
- 3rd/lua/luai_devent.h+3
- 3rd/lua/onelua.c+107
- 3rd/lua/utf8_crt.c+6
- 3rd/lua/utf8_crt.h+4
- 3rd/lua/utf8_lua.c+8
- bee/config.h-11
- bee/error.h+7-8
- bee/format.h+2-2
- bee/fsevent/fsevent_linux.cpp+2-2
- bee/lua/binding.h+6-10
- bee/platform/version.h+1-2
- bee/subprocess.h-2
- bee/subprocess/subprocess_posix.cpp+42-9
- bee/subprocess/subprocess_posix.h+2-2
- bee/subprocess/subprocess_win.h+4-6
- bee/utility/expected.h+2
- bee/utility/module_version_win.h+50-51
- bee/utility/path_helper.h+5-6
- bee/utility/unicode_win.h+13-14
- binding/lua_filesystem.cpp+126-58
- binding/lua_filewatch.cpp+1-1
- binding/lua_subprocess.cpp+4-6
- bootstrap/forward_lua.lua+1-1
- compile/bootstrap.lua+10-12
- compile/common.lua+24-51
- compile/config.lua+20-2
- compile/lua.lua+5-6
- make.lua+5-10
- project/macos-universal.lua-53
- test.lua+4-3
- test/shell.lua+15-1
- test/test_filesystem.lua+51-45
- test/test_filewatch.lua+11-10
- test/test_lua.lua+1-1
- test/test_socket.lua+29-20
- test/test_subprocess.lua+14-12
- .luarc.json+18-1
- 3rd/bee.lua+1-1
- compile/install.sh+6-6
- compile/ninja/android.ninja+39-35
- compile/ninja/linux.ninja+39-35
- compile/ninja/macos.ninja+42-36
- compile/ninja/mingw.ninja+53-46
- compile/ninja/msvc.ninja+60-52
- scripts/action.lua+36-24
- scripts/arguments.lua+1-1
- scripts/command/init.lua+1-1
- scripts/command/lua.lua+5-7
- scripts/command/rebuild.lua+1-1
- scripts/command/remake.lua-4
- scripts/compiler/clang.lua+21-7
- scripts/compiler/emcc.lua+1-1
- scripts/compiler/gcc.lua+10-2
- scripts/compiler/msvc.lua+12-6
- scripts/fsutil.lua+29-4
- scripts/glob.lua+8-10
- scripts/lua_support.lua+13-9
- scripts/main.lua+1-1
- scripts/msvc.lua+41-75
- scripts/msvc_util.lua+4-1
- scripts/ninja_writer.lua+3
- scripts/pathutil.lua+1-2
- scripts/perf.lua+55
- scripts/sandbox.lua+1-2
- scripts/simulator.lua+61-16
- scripts/writer.lua+256-111
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 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 | + | |
3 | 63 | | |
| 64 | + | |
| 65 | + | |
4 | 66 | | |
5 | 67 | | |
6 | 68 | | |
7 | 69 | | |
| 70 | + | |
8 | 71 | | |
9 | 72 | | |
10 | 73 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
30 | | - | |
| 30 | + | |
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
135 | 135 | | |
136 | 136 | | |
137 | 137 | | |
138 | | - | |
| 138 | + | |
139 | 139 | | |
140 | 140 | | |
141 | 141 | | |
| |||
653 | 653 | | |
654 | 654 | | |
655 | 655 | | |
656 | | - | |
| 656 | + | |
657 | 657 | | |
658 | 658 | | |
659 | 659 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
36 | | - | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
37 | 39 | | |
38 | 40 | | |
39 | 41 | | |
| |||
94 | 96 | | |
95 | 97 | | |
96 | 98 | | |
| 99 | + | |
| 100 | + | |
97 | 101 | | |
98 | 102 | | |
99 | 103 | | |
| |||
271 | 275 | | |
272 | 276 | | |
273 | 277 | | |
| 278 | + | |
| 279 | + | |
274 | 280 | | |
275 | 281 | | |
276 | 282 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
| 37 | + | |
| 38 | + | |
37 | 39 | | |
38 | 40 | | |
39 | 41 | | |
| |||
94 | 96 | | |
95 | 97 | | |
96 | 98 | | |
| 99 | + | |
| 100 | + | |
97 | 101 | | |
98 | 102 | | |
99 | 103 | | |
| |||
271 | 275 | | |
272 | 276 | | |
273 | 277 | | |
| 278 | + | |
| 279 | + | |
274 | 280 | | |
275 | 281 | | |
276 | 282 | | |
| |||
0 commit comments