mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-03 17:24:29 +00:00 
			
		
		
		
	refactor(api): deprecate nvim_notify #31938
Problem: The `nvim_notify` API (note: unrelated to `vim.notify()` Lua API) was not given any real motivation in https://github.com/neovim/neovim/pull/13843 There are, and were, idiomatic and ergonomic alternatives already. Solution: Deprecate `nvim_notify`.
This commit is contained in:
		
							
								
								
									
										12
									
								
								runtime/lua/vim/_meta/api.lua
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										12
									
								
								runtime/lua/vim/_meta/api.lua
									
									
									
										generated
									
									
									
								
							@@ -1647,14 +1647,10 @@ function vim.api.nvim_list_wins() end
 | 
			
		||||
--- @return any
 | 
			
		||||
function vim.api.nvim_load_context(dict) end
 | 
			
		||||
 | 
			
		||||
--- Notify the user with a message
 | 
			
		||||
---
 | 
			
		||||
--- Relays the call to vim.notify . By default forwards your message in the
 | 
			
		||||
--- echo area but can be overridden to trigger desktop notifications.
 | 
			
		||||
---
 | 
			
		||||
--- @param msg string Message to display to the user
 | 
			
		||||
--- @param log_level integer The log level
 | 
			
		||||
--- @param opts table<string,any> Reserved for future use.
 | 
			
		||||
--- @deprecated
 | 
			
		||||
--- @param msg string
 | 
			
		||||
--- @param log_level integer
 | 
			
		||||
--- @param opts table<string,any>
 | 
			
		||||
--- @return any
 | 
			
		||||
function vim.api.nvim_notify(msg, log_level, opts) end
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user