Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

git: remove last of submodules #1105

Merged
merged 4 commits into from
Sep 25, 2023
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
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

1 change: 0 additions & 1 deletion language-server-protocol
Submodule language-server-protocol deleted from 3481b8
4 changes: 4 additions & 0 deletions language-server-protocol/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* text=auto

License.txt eol=crlf
ThirdPartyNotices.txt eol=crlf
4 changes: 4 additions & 0 deletions language-server-protocol/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
npm-debug.log
_site/
.bundle/
vendor/
38 changes: 38 additions & 0 deletions language-server-protocol/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"editor.rulers": [
80
],
"cSpell.words": [
"ABAP",
"EBNF",
"LSIF",
"Naur",
"RGBA",
"Retriggers",
"Struct",
"Sublime's",
"Unregistration",
"bibtex",
"diagnostic's",
"downcase",
"hover's",
"lightbulbs",
"queryable",
"quickfix",
"refactorings",
"retrigger",
"sectionid",
"textedit",
"transactionally",
"uhhhh",
"uinteger",
"unregister",
"unregisterations",
"unregistrations",
"upcase",
"workspaceedit"
],
"git.branchProtection": [
"gh-pages"
]
}
19 changes: 19 additions & 0 deletions language-server-protocol/.vscode/spellright.dict
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
params
BibTeX
Coffeescript
Dockerfile
Ini
LaTeX
Makefile
Powershell
cshtml
ShaderLab
TeX
TextDocumentPositionParams
sectionid
vscode
vscode-jsonrpc
vscode-languageserver-protocol
boolean
npm
inlined
13 changes: 13 additions & 0 deletions language-server-protocol/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Jekyll",
"type": "shell",
"command": "bundle exec jekyll serve",
"problemMatcher": []
}
]
}
8 changes: 8 additions & 0 deletions language-server-protocol/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: default
---

<div class="container text-center">
<p>The page you are looking for cannot be found.</p>
<h2>404</h2>
</div>
20 changes: 20 additions & 0 deletions language-server-protocol/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
source "https://rubygems.org"
ruby RUBY_VERSION

# gem "jekyll", "3.6.2"

# to use GitHub Pages
# gem "github-pages", group: :jekyll_plugins

gem "github-pages", "~> 225", group: :jekyll_plugins

# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jemoji"
gem 'jekyll-redirect-from'
gem "jekyll-remote-theme"
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Loading