Xinqi Bao's Git
projects
/
st.git
/ diff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
8618386
)
Better comments for the snapping code.
author
Christoph Lohmann <
[email protected]
>
Sat, 4 May 2013 06:01:17 +0000
(08:01 +0200)
committer
Christoph Lohmann <
[email protected]
>
Sat, 4 May 2013 06:01:17 +0000
(08:01 +0200)
st.c
diff
|
blob
|
history
diff --git
a/st.c
b/st.c
index
533fb0a
..
d73aaa1
100644
(file)
--- a/
st.c
+++ b/
st.c
@@
-681,6
+681,10
@@
void
selsnap(int mode, int *x, int *y, int direction) {
switch(mode) {
case SNAP_WORD:
selsnap(int mode, int *x, int *y, int direction) {
switch(mode) {
case SNAP_WORD:
+ /*
+ * Snap around if the word wraps around at the end or
+ * beginning of a line.
+ */
for(;;) {
if(direction < 0 && *x <= 0) {
if(*y > 0 && term.line[*y - 1][term.col-1].mode
for(;;) {
if(direction < 0 && *x <= 0) {
if(*y > 0 && term.line[*y - 1][term.col-1].mode
@@
-708,6
+712,11
@@
selsnap(int mode, int *x, int *y, int direction) {
}
break;
case SNAP_LINE:
}
break;
case SNAP_LINE:
+ /*
+ * Snap around if the the previous line or the current one
+ * has set ATTR_WRAP at its end. Then the whole next or
+ * previous line will be selected.
+ */
*x = (direction < 0) ? 0 : term.col - 1;
if(direction < 0 && *y > 0) {
for(; *y > 0; *y += direction) {
*x = (direction < 0) ? 0 : term.col - 1;
if(direction < 0 && *y > 0) {
for(; *y > 0; *y += direction) {