Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -1153,11 +1153,6 @@ async function taskBuildWebsite() {
<h1><a href="/" itemprop="name">${pageTitle}</a></h1>
</div>
</header>
<nav>
<ul class="container">
<li><a href="/json/">JSON</a></li>
</ul>
</nav>

<div role="main" id="main" class="container">
${body}
Expand Down
5 changes: 0 additions & 5 deletions src/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,6 @@
@*<h2 itemprop="headline">@Page.Description</h2>*@
</div>
</header>
<nav>
<ul class="container">
<li><a href="/json/">JSON</a></li>
</ul>
</nav>

<div role="main" id="main" class="container">
@RenderBody()
Expand Down
22 changes: 0 additions & 22 deletions src/css/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -115,28 +115,6 @@ header h1 a {
margin-left: 2em;
}

nav {
width: 100%;
background: #ff8d00;
}

nav ul {
list-style: none;
padding: 0;
}

nav li {
display: inline-block;
padding: 2px 0;
margin-right: 15px;
}

nav a {
color: white;
text-decoration: none;
font-weight: 600;
}

#schemalist,
#editorlist {
width: 100%;
Expand Down
30 changes: 30 additions & 0 deletions src/schemas/json/clangd.json
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,16 @@
"type": "string",
"minLength": 1,
"examples": ["clang++"]
},
"BuiltinHeaders": {
"description": "Whether Clangd should include its own built-in headers (like stddef.h), or use the system header found from the query driver.",
"type": "string",
"default": "Clangd",
"enum": ["Clangd", "QueryDriver"],
"enumDescriptions": [
"Use builtin headers from clangd. This is the default.",
"Use the headers extracted from the compiler via the --query-driver command line argument. If a query driver is not supplied or does not match the compiler, then the Clangd builtin headers will be the fallback."
]
}
},
"additionalProperties": false
Expand Down Expand Up @@ -664,6 +674,26 @@
"`fo^` completes to `foo(int arg)`, with `int arg` selected"
],
"default": "FullPlaceholders"
},
"HeaderInsertion": {
"description": "Whether to add #include directives when accepting code completions. Config equivalent of the CLI option --header-insertion.",
"type": "string",
"default": "IWYU",
"enum": ["IWYU", "Never"],
"enumDescriptions": [
"Include what you use. Insert the owning header for top-level symbols, unless the header is already directly included or the symbol is forward-declared. This is the default.",
"Never insert headers."
]
},
"CodePatterns": {
"description": "Change how completion will suggest code snippets and code patterns.",
"type": "string",
"default": "All",
"enum": ["All", "None"],
"enumDescriptions": [
"All the code snippets and patterns are suggested.",
"None of the code snippets and patterns are suggested."
]
}
},
"additionalProperties": false
Expand Down
12 changes: 12 additions & 0 deletions src/schemas/json/pnpm-workspace.json
Original file line number Diff line number Diff line change
Expand Up @@ -775,6 +775,18 @@
"saveExact": {
"description": "Saved dependencies will be configured with an exact version rather than using pnpm's default semver range operator.",
"type": "boolean"
},
"minimumReleaseAge": {
"description": "It specifies the number of minutes that must pass after a version is published before pnpm will install it. For example, setting `minimumReleaseAge: 1440` ensures that only packages released at least one day ago can be installed.",
"type": "number"
},
"minimumReleaseAgeExclude": {
"description": "If you set `minimumReleaseAge` but need to disable this restriction for certain dependencies, you can list them under the `minimumReleaseAgeExclude` setting.",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
}
},
"additionalProperties": false
Expand Down