Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
1bf5f15b26 |
2
.github/.release-please-manifest.json
vendored
2
.github/.release-please-manifest.json
vendored
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
".": "12.29.1"
|
".": "12.28.0"
|
||||||
}
|
}
|
||||||
|
22
CHANGELOG.md
22
CHANGELOG.md
@ -1,27 +1,5 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## [12.29.1](https://github.com/LazyVim/LazyVim/compare/v12.29.0...v12.29.1) (2024-07-14)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* **omnisharp:** don't detach coreclr debug adapter ([#4023](https://github.com/LazyVim/LazyVim/issues/4023)) ([b3e746b](https://github.com/LazyVim/LazyVim/commit/b3e746b637a0d43aa0195cc1ff3d8adf1fedfaf6))
|
|
||||||
* **pick:** get rid of "auto" picker and set better defaults for telescope find_files ([#4024](https://github.com/LazyVim/LazyVim/issues/4024)) ([337e9dd](https://github.com/LazyVim/LazyVim/commit/337e9ddc007d32c624433b5c6f0af6e8697dfcc6))
|
|
||||||
* **tailwind:** additional tailwind completion settings for phoenix projects ([#3961](https://github.com/LazyVim/LazyVim/issues/3961)) ([9bce054](https://github.com/LazyVim/LazyVim/commit/9bce054fafcd631ec133a82ada1ecbbd23ca5510))
|
|
||||||
|
|
||||||
## [12.29.0](https://github.com/LazyVim/LazyVim/compare/v12.28.0...v12.29.0) (2024-07-14)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* **java:** new java mappings format for which-key v3 ([#4013](https://github.com/LazyVim/LazyVim/issues/4013)) ([28a7f81](https://github.com/LazyVim/LazyVim/commit/28a7f8126c1b46b41ca58845ee081b67ce6981f2))
|
|
||||||
* shorter keymap descriptions for mini.ai / yanky ([75ff149](https://github.com/LazyVim/LazyVim/commit/75ff1496bd4209784a4250e59920d24d75a3e3b0))
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* **flit:** use which-key preset keymap descriptions ([#4000](https://github.com/LazyVim/LazyVim/issues/4000)) ([ca37162](https://github.com/LazyVim/LazyVim/commit/ca37162cb7452dce32cf3f0ad661bcd1245286c0))
|
|
||||||
|
|
||||||
## [12.28.0](https://github.com/LazyVim/LazyVim/compare/v12.27.0...v12.28.0) (2024-07-12)
|
## [12.28.0](https://github.com/LazyVim/LazyVim/compare/v12.27.0...v12.28.0) (2024-07-12)
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
*LazyVim.txt* For Neovim Last change: 2024 July 14
|
*LazyVim.txt* For Neovim Last change: 2024 July 13
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
Table of Contents *LazyVim-table-of-contents*
|
Table of Contents *LazyVim-table-of-contents*
|
||||||
|
@ -3,7 +3,7 @@ _G.LazyVim = require("lazyvim.util")
|
|||||||
---@class LazyVimConfig: LazyVimOptions
|
---@class LazyVimConfig: LazyVimOptions
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
M.version = "12.29.1" -- x-release-please-version
|
M.version = "12.28.0" -- x-release-please-version
|
||||||
LazyVim.config = M
|
LazyVim.config = M
|
||||||
|
|
||||||
---@class LazyVimOptions
|
---@class LazyVimOptions
|
||||||
|
@ -21,10 +21,10 @@ return {
|
|||||||
},
|
},
|
||||||
-- stylua: ignore
|
-- stylua: ignore
|
||||||
{ "y", "<Plug>(YankyYank)", mode = { "n", "x" }, desc = "Yank Text" },
|
{ "y", "<Plug>(YankyYank)", mode = { "n", "x" }, desc = "Yank Text" },
|
||||||
{ "p", "<Plug>(YankyPutAfter)", mode = { "n", "x" }, desc = "Put Text After Cursor" },
|
{ "p", "<Plug>(YankyPutAfter)", mode = { "n", "x" }, desc = "Put Yanked Text After Cursor" },
|
||||||
{ "P", "<Plug>(YankyPutBefore)", mode = { "n", "x" }, desc = "Put Text Before Cursor" },
|
{ "P", "<Plug>(YankyPutBefore)", mode = { "n", "x" }, desc = "Put Yanked Text Before Cursor" },
|
||||||
{ "gp", "<Plug>(YankyGPutAfter)", mode = { "n", "x" }, desc = "Put Text After Selection" },
|
{ "gp", "<Plug>(YankyGPutAfter)", mode = { "n", "x" }, desc = "Put Yanked Text After Selection" },
|
||||||
{ "gP", "<Plug>(YankyGPutBefore)", mode = { "n", "x" }, desc = "Put Text Before Selection" },
|
{ "gP", "<Plug>(YankyGPutBefore)", mode = { "n", "x" }, desc = "Put Yanked Text Before Selection" },
|
||||||
{ "[y", "<Plug>(YankyCycleForward)", desc = "Cycle Forward Through Yank History" },
|
{ "[y", "<Plug>(YankyCycleForward)", desc = "Cycle Forward Through Yank History" },
|
||||||
{ "]y", "<Plug>(YankyCycleBackward)", desc = "Cycle Backward Through Yank History" },
|
{ "]y", "<Plug>(YankyCycleBackward)", desc = "Cycle Backward Through Yank History" },
|
||||||
{ "]p", "<Plug>(YankyPutIndentAfterLinewise)", desc = "Put Indented After Cursor (Linewise)" },
|
{ "]p", "<Plug>(YankyPutIndentAfterLinewise)", desc = "Put Indented After Cursor (Linewise)" },
|
||||||
|
@ -75,9 +75,6 @@ return {
|
|||||||
type = "executable",
|
type = "executable",
|
||||||
command = vim.fn.exepath("netcoredbg"),
|
command = vim.fn.exepath("netcoredbg"),
|
||||||
args = { "--interpreter=vscode" },
|
args = { "--interpreter=vscode" },
|
||||||
options = {
|
|
||||||
detached = false,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
for _, lang in ipairs({ "cs", "fsharp", "vb" }) do
|
for _, lang in ipairs({ "cs", "fsharp", "vb" }) do
|
||||||
|
@ -40,17 +40,6 @@ return {
|
|||||||
return not vim.tbl_contains(opts.filetypes_exclude or {}, ft)
|
return not vim.tbl_contains(opts.filetypes_exclude or {}, ft)
|
||||||
end, opts.filetypes)
|
end, opts.filetypes)
|
||||||
|
|
||||||
-- Additional settings for Phoenix projects
|
|
||||||
opts.settings = {
|
|
||||||
tailwindCSS = {
|
|
||||||
includeLanguages = {
|
|
||||||
elixir = "html-eex",
|
|
||||||
eelixir = "html-eex",
|
|
||||||
heex = "html-eex",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
-- Add additional filetypes
|
-- Add additional filetypes
|
||||||
vim.list_extend(opts.filetypes, opts.filetypes_include or {})
|
vim.list_extend(opts.filetypes, opts.filetypes_include or {})
|
||||||
end,
|
end,
|
||||||
|
@ -63,32 +63,32 @@ end
|
|||||||
function M.ai_whichkey()
|
function M.ai_whichkey()
|
||||||
local objects = {
|
local objects = {
|
||||||
{ " ", desc = "whitespace" },
|
{ " ", desc = "whitespace" },
|
||||||
{ '"', desc = '" string' },
|
{ '"', desc = 'balanced "' },
|
||||||
{ "'", desc = "' string" },
|
{ "'", desc = "balanced '" },
|
||||||
{ "(", desc = "() block" },
|
{ "(", desc = "balanced (" },
|
||||||
{ ")", desc = "() block with ws" },
|
{ ")", desc = "balanced ) including white-space" },
|
||||||
{ "<", desc = "<> block" },
|
{ "<", desc = "balanced <" },
|
||||||
{ ">", desc = "<> block with ws" },
|
{ ">", desc = "balanced > including white-space" },
|
||||||
{ "?", desc = "user prompt" },
|
{ "?", desc = "user prompt" },
|
||||||
{ "U", desc = "use/call without dot" },
|
{ "U", desc = "use/call without dot in name" },
|
||||||
{ "[", desc = "[] block" },
|
{ "[", desc = "balanced [" },
|
||||||
{ "]", desc = "[] block with ws" },
|
{ "]", desc = "balanced ] including white-space" },
|
||||||
{ "_", desc = "underscore" },
|
{ "_", desc = "underscore" },
|
||||||
{ "`", desc = "` string" },
|
{ "`", desc = "balanced `" },
|
||||||
{ "a", desc = "argument" },
|
{ "a", desc = "argument" },
|
||||||
{ "b", desc = ")]} block" },
|
{ "b", desc = "balanced )]}" },
|
||||||
{ "c", desc = "class" },
|
{ "c", desc = "class" },
|
||||||
{ "d", desc = "digit(s)" },
|
{ "d", desc = "digit(s)" },
|
||||||
{ "e", desc = "CamelCase / snake_case" },
|
{ "e", desc = "word in CamelCase & snake_case" },
|
||||||
{ "f", desc = "function" },
|
{ "f", desc = "function" },
|
||||||
{ "g", desc = "entire file" },
|
{ "g", desc = "entire file" },
|
||||||
{ "i", desc = "indent" },
|
{ "i", desc = "indent" },
|
||||||
{ "o", desc = "block, conditional, loop" },
|
{ "o", desc = "block, conditional, loop" },
|
||||||
{ "q", desc = "quote `\"'" },
|
{ "q", desc = "quote `\"'" },
|
||||||
{ "t", desc = "tag" },
|
{ "t", desc = "tag" },
|
||||||
{ "u", desc = "use/call" },
|
{ "u", desc = "use/call function & method" },
|
||||||
{ "{", desc = "{} block" },
|
{ "{", desc = "balanced {" },
|
||||||
{ "}", desc = "{} with ws" },
|
{ "}", desc = "balanced } including white-space" },
|
||||||
}
|
}
|
||||||
|
|
||||||
local ret = { mode = { "o", "x" } }
|
local ret = { mode = { "o", "x" } }
|
||||||
@ -102,10 +102,6 @@ function M.ai_whichkey()
|
|||||||
}) do
|
}) do
|
||||||
ret[#ret + 1] = { prefix, group = name }
|
ret[#ret + 1] = { prefix, group = name }
|
||||||
for _, obj in ipairs(objects) do
|
for _, obj in ipairs(objects) do
|
||||||
local desc = obj.desc
|
|
||||||
if prefix:sub(1, 1) == "i" then
|
|
||||||
desc = desc:gsub(" with ws", "")
|
|
||||||
end
|
|
||||||
ret[#ret + 1] = { prefix .. obj[1], desc = obj.desc }
|
ret[#ret + 1] = { prefix .. obj[1], desc = obj.desc }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user