- Timestamp:
- Jun 29, 2002, 11:55:06 AM (22 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:
- 855ebe7
- Parents:
- 61d27fb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/owlconf.erik
r7d4fbcd rb950088 1 1 ### The owlconf config file -*- perl -*- 2 2 ### $Id$ 3 4 ### !!!!!WARNING!!!!! !!!!!WARNING!!!!! !!!!!WARNING!!!!! !!!!!WARNING!!!!! 5 ### This is an example file intended to demonstrate how to use 6 ### various features of owl. Some of the key bindings, in particular, 7 ### are more for examples than things you may actually want to use. 8 ### Make sure to read through it first and understand it before just using it. 9 ### Don't blame me if anything in here ends up vaporizing your dog. 10 ### !!!!!WARNING!!!!! !!!!!WARNING!!!!! !!!!!WARNING!!!!! !!!!!WARNING!!!!! 11 3 12 ### 4 13 ### This file is interpreted by the perl interpreter. … … 77 86 owl::command("alias zc zwrite -c"); 78 87 88 # Send zephyrs with "C-c C-c". 89 # Note that this will cause "C-c" to not work... 79 90 owl::command("bindkey editmulti \"C-c C-c\" command editmulti:done"); 91 92 # Make "d" ignore current movement direction 93 owl::command("bindkey recv d command ( delete --no-move ; next --skip-deleted )"); 94 95 # Useful keys for reading and deleting by class/instance 80 96 owl::command("bindkey recv M-k command ( smartnarrow ; delete view )"); 81 97 owl::command("bindkey recv M-l command ( expunge ; view all )"); 82 98 owl::command("bindkey recv M-K command ( smartnarrow ; delete view ; expunge ; view all )"); 99 100 # Make 'M-s' insert a <scritchscritchscritch> sequence with a random 101 # number of scritches. 83 102 owl::command(q(bindkey edit M-s command perl owl::command("edit:insert-text <".("scritch"x int(1+rand(5))).">"))); 84 103
Note: See TracChangeset
for help on using the changeset viewer.