mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-10-31 19:12:38 +00:00 
			
		
		
		
	feat: add lib function to quickly mkIf bindings
This commit is contained in:
		
					parent
					
						
							
								0bb56fb1a7
							
						
					
				
			
			
				commit
				
					
						86d91dbac5
					
				
			
		
					 1 changed files with 17 additions and 0 deletions
				
			
		|  | @ -7,6 +7,23 @@ in | |||
|   nixpkgsLib.extend (self: super: { | ||||
|     nvim = mkNvimLib {lib = self;}; | ||||
| 
 | ||||
|     mkLuaBinding = key: action: desc: | ||||
|       self.mkIf (key != null) { | ||||
|         "${key}" = { | ||||
|           inherit action desc; | ||||
|           lua = true; | ||||
|           silent = true; | ||||
|         }; | ||||
|       }; | ||||
| 
 | ||||
|     mkBinding = key: action: desc: | ||||
|       self.mkIf (key != null) { | ||||
|         "${key}" = { | ||||
|           inherit action desc; | ||||
|           silent = true; | ||||
|         }; | ||||
|       }; | ||||
| 
 | ||||
|     # For forward compatibility. | ||||
|     literalExpression = super.literalExpression or super.literalExample; | ||||
|     literalDocBook = super.literalDocBook or super.literalExample; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 n3oney
				n3oney