File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
25
25
26
26
- Enhanced completion menu to correctly display and handle non-English (ex. Korean) file names and tags in link, fixing Unicode encoding issues
27
27
- Fixed bug where ` ObsidianRename ` did not update the note_id if run in current buffer and not remove the old buffer
28
+ - Fixed ` <C-x> ` not working after command merging
28
29
29
30
## [ v3.10.0] ( https://github.com/obsidian-nvim/obsidian.nvim/releases/tag/v3.10.0 ) - 2025-04-12
30
31
Original file line number Diff line number Diff line change 312
312
--- @param cmd_name string The name of the command.
313
313
--- @param cmd_data table |? The payload for the command.
314
314
Client .command = function (self , cmd_name , cmd_data )
315
- local commands = require " obsidian.commands"
316
-
317
- commands [cmd_name ](self , cmd_data )
315
+ local command = require (" obsidian.commands." .. cmd_name )
316
+ command (self , cmd_data )
318
317
end
319
318
320
319
--- Get the default search options.
Original file line number Diff line number Diff line change @@ -314,7 +314,7 @@ Picker._note_query_mappings = function(self)
314
314
mappings [self .client .opts .picker .note_mappings .new ] = {
315
315
desc = " new" ,
316
316
callback = function (query )
317
- self .client :command (" ObsidianNew " , { args = query })
317
+ self .client :command (" new " , { args = query })
318
318
end ,
319
319
}
320
320
end
You can’t perform that action at this time.
0 commit comments