Changeset 039213e
- Timestamp:
- Jun 30, 2002, 12:22:20 PM (21 years ago)
- 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
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r8ee73f8d r039213e 31 31 Added variables edit:maxfillcols and edit:maxwrapcols which 32 32 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. 34 37 Added smartzpunt command with key binding of "C-x k". 35 38 This starts a zpunt command filled in with -
examples/owlconf.erik
r8ee73f8d r039213e 125 125 owl::command("bindkey recv M-K command ( smartnarrow ; delete view ; expunge ; view all )"); 126 126 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. 128 130 owl::command("alias swapview perl swapview();"); 129 131 owl::command("bindkey recv C-i command swapview"); -
variable.c
rd36f2cb r039213e 121 121 122 122 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)" ), 127 127 128 128 OWLVAR_INT_FULL( "typewinsize" /* %OwlVarStub:typwin_lines */,
Note: See TracChangeset
for help on using the changeset viewer.