Skip to content

Commit

Permalink
fix(lua): downgrade tree-sitter-lua from 2.1.2 to 2.1.1 due to breaki…
Browse files Browse the repository at this point in the history
…ng linux changes
  • Loading branch information
kkoomen committed Jul 9, 2023
1 parent 0f398b1 commit a757ee6
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 24 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ on:

jobs:
tests_vim:
name: Vim
name: Vim (unix)
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-20.04, macos-latest]
vim-version: [v7.4.2119, v8.2.5172, head]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -88,11 +88,11 @@ jobs:


tests_neovim:
name: Neovim
name: Neovim (unix)
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-20.04, macos-latest]
vim-version: [v0.3.2, head]
runs-on: ${{ matrix.os }}
steps:
Expand Down
1 change: 1 addition & 0 deletions autoload/doge.vim
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ let s:comment_placeholder = doge#utils#placeholder()
" actual docblock to be inserted later on.
function! doge#run_parser() abort
let l:executables = [
\ '/helper/target/release/vim-doge-helper.exe',
\ '/helper/target/release/vim-doge-helper',
\ '/bin/vim-doge-helper',
\ ]
Expand Down
20 changes: 10 additions & 10 deletions helper/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions helper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0.99"
serde_yaml = "0.9.22"
tree-sitter = "0.20.10"
tree-sitter-bash = { git = "https://github.com/tree-sitter/tree-sitter-bash" }
tree-sitter-lua = { git = "https://github.com/Azganoth/tree-sitter-lua" }
tree-sitter-ruby = { git = "https://github.com/tree-sitter/tree-sitter-ruby" }
tree-sitter-rust = { git = "https://github.com/tree-sitter/tree-sitter-rust" }
tree-sitter-c-sharp = { git = "https://github.com/tree-sitter/tree-sitter-c-sharp" }
tree-sitter-java = { git = "https://github.com/tree-sitter/tree-sitter-java" }
tree-sitter-python = { git = "https://github.com/tree-sitter/tree-sitter-python" }
tree-sitter-c = { git = "https://github.com/tree-sitter/tree-sitter-c" }
tree-sitter-cpp = { git = "https://github.com/tree-sitter/tree-sitter-cpp" }
tree-sitter-typescript = { git = "https://github.com/tree-sitter/tree-sitter-typescript" }
tree-sitter-bash = { git = "https://github.com/tree-sitter/tree-sitter-bash", rev = "4936467" }
tree-sitter-lua = { git = "https://github.com/Azganoth/tree-sitter-lua", rev = "e198b76" }
tree-sitter-ruby = { git = "https://github.com/tree-sitter/tree-sitter-ruby", rev = "f257f3f" }
tree-sitter-rust = { git = "https://github.com/tree-sitter/tree-sitter-rust", rev = "0a70e15" }
tree-sitter-c-sharp = { git = "https://github.com/tree-sitter/tree-sitter-c-sharp", rev = "1648e21" }
tree-sitter-java = { git = "https://github.com/tree-sitter/tree-sitter-java", rev = "c194ee5" }
tree-sitter-python = { git = "https://github.com/tree-sitter/tree-sitter-python", rev = "36f9e33" }
tree-sitter-c = { git = "https://github.com/tree-sitter/tree-sitter-c", rev = "84bdf40" }
tree-sitter-cpp = { git = "https://github.com/tree-sitter/tree-sitter-cpp", rev = "0e7b7a0" }
tree-sitter-typescript = { git = "https://github.com/tree-sitter/tree-sitter-typescript", rev = "3429d8c" }

# Waiting for these to be merged:
# - https://github.com/tree-sitter/tree-sitter-php/pull/181
Expand Down

0 comments on commit a757ee6

Please sign in to comment.