Changeset da466e0
- Timestamp:
- Aug 22, 2008, 9:48:20 PM (16 years ago)
- Branches:
- master, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 147d880
- Parents:
- cdc6ff1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
global.c
r9f4e3f8 rda466e0 310 310 311 311 void owl_global_set_typwin_active(owl_global *g) { 312 int d = owl_global_get_typewindelta(g); 313 if (d > 0) 314 owl_function_resize_typwin(owl_global_get_typwin_lines(g) + d); 315 312 316 g->typwinactive=1; 313 317 } 314 318 315 319 void owl_global_set_typwin_inactive(owl_global *g) { 320 int d = owl_global_get_typewindelta(g); 321 if (d > 0) 322 owl_function_resize_typwin(owl_global_get_typwin_lines(g) - d); 323 316 324 g->typwinactive=0; 317 325 } -
variable.c
r719c699 rda466e0 312 312 NULL /* use default for get */ 313 313 ), 314 315 OWLVAR_INT( "typewindelta" /* %OwlVarStub */, 0, 316 "number of lines to add to the typing window when in use", 317 "On small screens you may want the typing window to\n" 318 "auto-hide when not entering a command or message.\n" 319 "This variable is the number of lines to add to the\n" 320 "typing window when it is in use; you can then set\n" 321 "typewinsize to 1.\n\n" 322 "This works a lot better with a non-default scrollmode;\n" 323 "try :set scrollmode pagedcenter.\n"), 314 324 315 325 OWLVAR_ENUM( "scrollmode" /* %OwlVarStub */, OWL_SCROLLMODE_NORMAL,
Note: See TracChangeset
for help on using the changeset viewer.