Skip to content

Commit 8147e0a

Browse files
committed
feat(minimax): sync to 38434a4
1 parent b39781e commit 8147e0a

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

MiniMax/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
_Generated from the `main` branch of 'MiniMax'_
22

3+
## 2025-11-22 {#2025-11-22}
4+
5+
- Update `<Leader>fs` mapping to use `"workspace_symbol_live"` scope for `:Pick lsp` instead of `"workspace_symbol"`
6+
37
## 2025-10-16 {#2025-10-16}
48

59
- Move `now_if_args` startup helper to 'init.lua' as `_G.Config.now_if_args` to be directly usable from other config files.

MiniMax/configs/nvim-0.11/index.qmd

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ nmap_leader('eq', explore_quickfix, 'Quickfix')
367367
--
368368
-- All these use 'mini.pick'. See `:h MiniPick-overview` for an overview.
369369
local pick_added_hunks_buf = '<Cmd>Pick git_hunks path="%" scope="staged"<CR>'
370+
local pick_workspace_symbols_live = '<Cmd>Pick lsp scope="workspace_symbol_live"<CR>'
370371

371372
nmap_leader('f/', '<Cmd>Pick history scope="/"<CR>', '"/" history')
372373
nmap_leader('f:', '<Cmd>Pick history scope=":"<CR>', '":" history')
@@ -388,7 +389,7 @@ nmap_leader('fm', '<Cmd>Pick git_hunks<CR>', 'Modified hunks
388389
nmap_leader('fM', '<Cmd>Pick git_hunks path="%"<CR>', 'Modified hunks (buf)')
389390
nmap_leader('fr', '<Cmd>Pick resume<CR>', 'Resume')
390391
nmap_leader('fR', '<Cmd>Pick lsp scope="references"<CR>', 'References (LSP)')
391-
nmap_leader('fs', '<Cmd>Pick lsp scope="workspace_symbol"<CR>', 'Symbols workspace')
392+
nmap_leader('fs', pick_workspace_symbols_live, 'Symbols workspace (live)')
392393
nmap_leader('fS', '<Cmd>Pick lsp scope="document_symbol"<CR>', 'Symbols document')
393394
nmap_leader('fv', '<Cmd>Pick visit_paths cwd=""<CR>', 'Visit paths (all)')
394395
nmap_leader('fV', '<Cmd>Pick visit_paths<CR>', 'Visit paths (cwd)')
@@ -1329,6 +1330,8 @@ local now_if_args = _G.Config.now_if_args
13291330
-- requires two extra pieces that don't come with Neovim directly:
13301331
-- - Language parsers: programs that convert text into trees. Some are built-in
13311332
-- (like for Lua), 'nvim-treesitter' provides many others.
1333+
-- NOTE: It requires third party software to build and install parsers.
1334+
-- See the link for more info in "Requirements" section of the MiniMax README.
13321335
-- - Query files: definitions of how to extract information from trees in
13331336
-- a useful manner (see `:h treesitter-query`). 'nvim-treesitter' also provides
13341337
-- these, while 'nvim-treesitter-textobjects' provides the ones for Neovim

MiniMax/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ It is not a comprehensive guide on how to set up and use every Neovim feature an
4545
- Internet connection for downloading plugins.
4646
- (Optional, but recommended) [`ripgrep`](https://github.com/BurntSushi/ripgrep#installation).
4747
- (Optional, but recommended) Terminal emulator (or GUI) with [true colors](https://github.com/termstandard/colors#truecolor-support-in-output-devices) and [Nerd Font icons](https://www.nerdfonts.com/) support. No need for a full Nerd font, using [`NerdFontsSymbolsOnly`](https://github.com/ryanoasis/nerd-fonts/releases/latest) as a fallback is usually enough.
48+
- (Optional, but recommended) System requirements for [`main` branch of 'nvim-treesitter/nvim-treesitter' plugin](https://github.com/nvim-treesitter/nvim-treesitter/tree/main?tab=readme-ov-file#requirements).
4849

4950
#### Knowledge
5051

0 commit comments

Comments
 (0)