Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cs24-19fa
git_rec_nano
Commits
980e334e
Commit
980e334e
authored
8 years ago
by
Benno Schulenberg
Browse files
Options
Download
Email Patches
Plain Diff
tweaks: rearrange some code to separate softwrap and normal mode more
(Ignore the indentation for the moment.)
parent
9bb64fcc
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/winio.c
+10
-9
src/winio.c
with
10 additions
and
9 deletions
+10
-9
src/winio.c
View file @
980e334e
...
...
@@ -2688,11 +2688,13 @@ int update_line(filestruct *fileptr, size_t index)
if
(
row
<
0
||
row
>=
editwinrows
)
return
0
;
#ifndef NANO_TINY
if
(
!
ISSET
(
SOFTWRAP
))
{
#endif
/* First, blank out the row. */
blank_row
(
edit
,
row
,
0
,
COLS
);
/* Next, find out from which column to start displaying the line. */
if
(
!
ISSET
(
SOFTWRAP
))
from_col
=
get_page_start
(
strnlenpt
(
fileptr
->
data
,
index
));
/* Expand the line, replacing tabs with spaces, and control
...
...
@@ -2703,9 +2705,6 @@ int update_line(filestruct *fileptr, size_t index)
edit_draw
(
fileptr
,
converted
,
row
,
from_col
);
free
(
converted
);
#ifndef NANO_TINY
if
(
!
ISSET
(
SOFTWRAP
))
{
#endif
if
(
from_col
>
0
)
mvwaddch
(
edit
,
row
,
margin
,
'$'
);
if
(
strlenpt
(
fileptr
->
data
)
>
from_col
+
editwincols
)
...
...
@@ -2714,25 +2713,27 @@ int update_line(filestruct *fileptr, size_t index)
}
else
{
size_t
full_length
=
strlenpt
(
fileptr
->
data
);
for
(
from_col
+
=
editwincols
;
from_col
<=
full_length
&&
row
<
editwinrows
-
1
;
from_col
+=
editwincols
)
{
for
(
from_col
=
0
;
from_col
<=
full_length
&&
row
<
editwinrows
;
from_col
+=
editwincols
)
{
/* First, blank out the row. */
blank_row
(
edit
,
++
row
,
0
,
COLS
);
blank_row
(
edit
,
row
,
0
,
COLS
);
/* Expand the line, replacing tabs with spaces, and control
* characters with their displayed forms. */
converted
=
display_string
(
fileptr
->
data
,
from_col
,
editwincols
,
TRUE
);
/* Draw the line. */
edit_draw
(
fileptr
,
converted
,
row
,
from_col
);
edit_draw
(
fileptr
,
converted
,
row
++
,
from_col
);
free
(
converted
);
extra_rows
++
;
}
return
--
extra_rows
;
}
#endif
return
extra_rows
;
return
0
;
}
/* Check whether old_column and new_column are on different "pages" (or that
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help