Changeset 039213e


Ignore:
Timestamp:
Jun 30, 2002, 12:22:20 PM (22 years ago)
Author:
Erik Nygren <nygren@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
6794f72
Parents:
8ee73f8d
Message:
Changed default of maxwrapcols to 0 and made docs more clear.
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r8ee73f8d r039213e  
    3131        Added variables edit:maxfillcols and edit:maxwrapcols which
    3232                will limit how wide editing paragraphs may get before
    33                 they get wrapped.  Default is 70 columns each.
     33                they get wrapped.  This is a max and may be narrower
     34                depending on the current size of the window.
     35                If 0, the max is unlimited.  Default is 70 columns for
     36                edit:maxfillcols and unlimited for edit:maxwrapcols.
    3437        Added smartzpunt command with key binding of "C-x k".
    3538                This starts a zpunt command filled in with
  • examples/owlconf.erik

    r8ee73f8d r039213e  
    125125    owl::command("bindkey recv M-K command ( smartnarrow ; delete view ; expunge ; view all )");
    126126
    127     # toggle between a view and a smartnarrow with TAB
     127    # Toggle between a view and a smartnarrow with TAB.
     128    # Note that you probably want to use something other than TAB as
     129    # it will have another binding in a future version of owl.
    128130    owl::command("alias swapview perl swapview();");
    129131    owl::command("bindkey recv C-i command swapview");
  • variable.c

    rd36f2cb r039213e  
    121121
    122122  OWLVAR_INT(    "edit:maxfillcols" /* %OwlVarStub:edit_maxfillcols */, 70,
    123                  "maximum number of columns for M-q to fill text to" ),
    124 
    125   OWLVAR_INT(    "edit:maxwrapcols" /* %OwlVarStub:edit_maxwrapcols */, 70,
    126                  "maximum number of columns for line-wrapping" ),
     123                 "maximum number of columns for M-q to fill text to (or unlimited if 0)" ),
     124
     125  OWLVAR_INT(    "edit:maxwrapcols" /* %OwlVarStub:edit_maxwrapcols */, 0,
     126                 "maximum number of columns for line-wrapping (or unlimited if 0)" ),
    127127
    128128  OWLVAR_INT_FULL( "typewinsize" /* %OwlVarStub:typwin_lines */,
Note: See TracChangeset for help on using the changeset viewer.