Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: termux/termux-language-server
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: af4e4e8fffd78002ea387f6ab08bdba1cfc9577f
Choose a base ref
..
head repository: termux/termux-language-server
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fa7fd3cc733d4f4a5028801ee9bdaab2ee816ae0
Choose a head ref
Showing with 4 additions and 4 deletions.
  1. +2 −2 .pre-commit-config.yaml
  2. +2 −2 docs/resources/configure.md
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -51,7 +51,7 @@ repos:
exclude_types:
- zsh
- repo: https://github.com/rhysd/actionlint
rev: v1.7.4
rev: v1.7.5
hooks:
- id: actionlint
- repo: https://github.com/adrienverge/yamllint
@@ -73,7 +73,7 @@ repos:
- mdformat-config
- mdformat-web
- repo: https://github.com/DavidAnson/markdownlint-cli2
rev: v0.16.0
rev: v0.17.0
hooks:
- id: markdownlint-cli2
additional_dependencies:
4 changes: 2 additions & 2 deletions docs/resources/configure.md
Original file line number Diff line number Diff line change
@@ -81,7 +81,7 @@ vim.api.nvim_create_autocmd({ "BufEnter" }, {
```toml
[[language]]
name = "sh"
language-servers = ["termux-language-server"]
language-servers = [ "termux-language-server",]

[language_server.termux-language-server]
command = "termux-language-server"
@@ -95,7 +95,7 @@ command = "termux-language-server"

```toml
[language_server.termux-language-server]
filetypes = ["sh"]
filetypes = [ "sh",]
command = "termux-language-server"
```