Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
05b827d
feat: v4.0.0
s1n7ax Nov 30, 2025
c2044eb
status colors + handling for skipped/errored test results
Sep 13, 2025
1466e03
chore: code format
s1n7ax Nov 30, 2025
5909052
fix: workspace_execute calling client command handler
s1n7ax Nov 30, 2025
bd122eb
chore: add keymap in dev config
s1n7ax Nov 30, 2025
c7de470
chore: add debug messages
s1n7ax Nov 30, 2025
4a21dfe
refactor: move checks to separate directory
s1n7ax Nov 30, 2025
452e440
feat: add jproperties filetype support
s1n7ax Nov 30, 2025
eff3614
chore: remove nvim-jdtls from devcontainer
s1n7ax Nov 30, 2025
1c17cf2
docs: update README for v4.0.0 release
s1n7ax Nov 30, 2025
4fea572
chore: disable line length check in luacheck
s1n7ax Nov 30, 2025
ee27605
chore(ci): enable debug logging in CI tests
s1n7ax Nov 30, 2025
83f8b86
docs: update README with native lsp config info
s1n7ax Nov 30, 2025
3886f25
docs: clarify feat: usage in commit messages
s1n7ax Nov 30, 2025
97e4331
docs: update installation instructions for native LSP
s1n7ax Nov 30, 2025
5ad9a94
fix: update nvim version check to 0.11
s1n7ax Nov 30, 2025
51690a8
chore(ci): add lsp log output for mac tests
s1n7ax Nov 30, 2025
c0cf386
fix: nvim-java does not work on mac with the embeded jdk
s1n7ax Nov 30, 2025
dc090d5
fix: java validation is invalid
s1n7ax Nov 30, 2025
dbb1755
chore: remove unwanted code
s1n7ax Nov 30, 2025
e2ce4b9
fix: java version check does not consider env passed for LSP
s1n7ax Nov 30, 2025
14e3722
fix: PATH env separator is not windows compatible
s1n7ax Nov 30, 2025
68ade55
fix: windows compatibility issue (#439)
s1n7ax Dec 3, 2025
ca68ebd
chore(doc): update docs (#440)
s1n7ax Dec 3, 2025
105f234
docs: remove starter configs, simplify install structure
s1n7ax Dec 3, 2025
71d3a83
chore: release 4.0.0
s1n7ax Dec 3, 2025
cdbcecc
docs: remove why section
s1n7ax Dec 3, 2025
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
Prev Previous commit
Next Next commit
chore: add keymap in dev config
  • Loading branch information
s1n7ax committed Nov 30, 2025
commit bd122ebcabae67ecd5cc618cfe7ac807730dc495
4 changes: 4 additions & 0 deletions .devcontainer/config/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,8 @@ vim.keymap.set('n', '<leader>dt', function()
require('dap').terminate()
end, { desc = 'Terminate' })

vim.keymap.set('n', 'gd', function()
vim.lsp.buf.definition()
end, { desc = 'Terminate' })

vim.keymap.set('n', '<leader>m', "<cmd>vnew<Cr><cmd>put = execute('messages')<Cr>")
Loading