This website works better with JavaScript.
Home
Explore
Help
Sign In
Linux
/
st
generated from
gmarx/git-template
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
remove dup of default window size.
master
Aurélien Aptel
13 years ago
parent
8503f954a1
commit
d5f3d120ea
2 changed files
with
3 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
TODO
+2
-2
st.c
+ 1
- 0
TODO
View File
@ -11,6 +11,7 @@ code & interface
* clean selection code
* clean and complete terminfo entry
* fix shift up/down (shift selection in emacs)
* fast drawing
* ...
misc
+ 2
- 2
st.c
View File
@ -1627,8 +1627,8 @@ xinit(void) {
xloadcols
(
)
;
/* window - default size */
xw
.
bufh
=
24
*
xw
.
ch
;
xw
.
bufw
=
80
*
xw
.
cw
;
xw
.
bufh
=
term
.
row
*
xw
.
ch
;
xw
.
bufw
=
term
.
col
*
xw
.
cw
;
xw
.
h
=
xw
.
bufh
+
2
*
BORDER
;
xw
.
w
=
xw
.
bufw
+
2
*
BORDER
;
Write
Preview
Loading…
Cancel
Save