mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 01:34:18 +00:00 
			
		
		
		
	Check for the right flag to fix split-window -p, from Bryan Childs.
This commit is contained in:
		@@ -94,10 +94,10 @@ cmd_split_window_exec(struct cmd *self, struct cmdq_item *item)
 | 
			
		||||
	size = -1;
 | 
			
		||||
	if (args_has(args, 'l')) {
 | 
			
		||||
		size = args_percentage_and_expand(args, 'l', 0, INT_MAX, curval,
 | 
			
		||||
			   item, &cause);
 | 
			
		||||
		    item, &cause);
 | 
			
		||||
	} else if (args_has(args, 'p')) {
 | 
			
		||||
		size = args_strtonum_and_expand(args, 'l', 0, 100, item,
 | 
			
		||||
			    &cause);
 | 
			
		||||
		size = args_strtonum_and_expand(args, 'p', 0, 100, item,
 | 
			
		||||
		    &cause);
 | 
			
		||||
		if (cause == NULL)
 | 
			
		||||
			size = curval * size / 100;
 | 
			
		||||
	}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user