mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-10-31 11:02:37 +00:00 
			
		
		
		
	Merge pull request #212 from FrothyMarrow/fix-filetree-open
filetree/nvimtree: fix default systemOpen on darwin
This commit is contained in:
		
				commit
				
					
						44ec36ec3b
					
				
			
		
					 1 changed files with 6 additions and 1 deletions
				
			
		|  | @ -191,7 +191,12 @@ in { | ||||||
|       }; |       }; | ||||||
| 
 | 
 | ||||||
|       cmd = mkOption { |       cmd = mkOption { | ||||||
|         default = "${pkgs.xdg-utils}/bin/xdg-open"; |         default = | ||||||
|  |           if pkgs.stdenv.isDarwin | ||||||
|  |           then "open" | ||||||
|  |           else if pkgs.stdenv.isLinux | ||||||
|  |           then "${pkgs.xdg-utils}/bin/xdg-open" | ||||||
|  |           else throw "NvimTree: No default system open command for this platform, please set `vim.filetree.nvimTree.systemOpen.cmd`"; | ||||||
|         description = "The open command itself"; |         description = "The open command itself"; | ||||||
|         type = types.str; |         type = types.str; | ||||||
|       }; |       }; | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 GitHub
					GitHub