Kevin Traver

Results 35 comments of Kevin Traver

Sorry, maybe I am misunderstanding. With the config above, and this line removed: https://github.com/nvim-neo-tree/neo-tree.nvim/blob/0f6e7acfd86b052acf78baccba04d5c61dcbbc0d/lua/neo-tree/ui/inputs.lua#L68 The input popup seems to work just fine.

You could also add **Edgy** integration: ``` { "folke/edgy.nvim", optional = true, opts = function(_, opts) opts.bottom = opts.bottom or {} table.insert(opts.bottom, { ft = "OverseerList", title = "Overseer", size...

> Personally I would prefer it if this could be made into an extra of its own. I use yanky but wouldn't want the `nvim-cmp` source of it. Of course,...

Something like this might work: ``` if config.preview.disable_diagnostics then local clients = vim.lsp.get_active_clients({ bufnr = bufnr }) for _, client in ipairs(clients) do if vim.lsp.buf_is_attached(bufnr, client.id) then vim.lsp.buf_detach_client(bufnr, client.id) end...

Here's why `ap` and `ip` don't work: ``` def sample_function() print("hello world") print("some text") print("more text") print("even more text") print("some more *text")

Related: https://github.com/gbprod/cutlass.nvim/issues/22

There is a lua version that might also be worth checking out as well: [https://github.com/jiaoshijie/undotree](https://github.com/jiaoshijie/undotree)

Since Maccy stores its data in sqlite, you can accomplish this now with the [sqlite mcp server](https://github.com/modelcontextprotocol/servers/tree/main/src/sqlite) ``` "sqlite": { "command": "uv", "args": [ "--directory", "path_to_sqlite_server", "run", "mcp-server-sqlite", "--db-path", "/Users/[username]/Library/Containers/org.p0deje.Maccy/Data/Library/Application...

I don't think the Maccy app would need to necessarily run the mcp server. I imagine this could just be an external tool to use in addition to the Maccy...

Using the SQLite MCP Server seems like its a solution thats most of the way there already.