Select to the end of row if end of line is reached.
Thanks Alexander Rezinsky <alexrez@gmail.com>!
This commit is contained in:
		
							
								
								
									
										12
									
								
								st.c
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								st.c
									
									
									
									
									
								
							@ -679,6 +679,8 @@ selected(int x, int y) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
void
 | 
					void
 | 
				
			||||||
selsnap(int mode, int *x, int *y, int direction) {
 | 
					selsnap(int mode, int *x, int *y, int direction) {
 | 
				
			||||||
 | 
						int i;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	switch(mode) {
 | 
						switch(mode) {
 | 
				
			||||||
	case SNAP_WORD:
 | 
						case SNAP_WORD:
 | 
				
			||||||
		/*
 | 
							/*
 | 
				
			||||||
@ -735,6 +737,16 @@ selsnap(int mode, int *x, int *y, int direction) {
 | 
				
			|||||||
		}
 | 
							}
 | 
				
			||||||
		break;
 | 
							break;
 | 
				
			||||||
	default:
 | 
						default:
 | 
				
			||||||
 | 
							/*
 | 
				
			||||||
 | 
							 * Select the whole line when the end of line is reached.
 | 
				
			||||||
 | 
							 */
 | 
				
			||||||
 | 
							if(direction > 0) {
 | 
				
			||||||
 | 
								i = term.col;
 | 
				
			||||||
 | 
								while(--i > 0 && term.line[*y][i].c[0] == ' ')
 | 
				
			||||||
 | 
									/* nothing */;
 | 
				
			||||||
 | 
								if(i > 0 && i < *x)
 | 
				
			||||||
 | 
									*x = term.col - 1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
		break;
 | 
							break;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user