Changeset 7360fab for keys.c


Ignore:
Timestamp:
Jun 29, 2002, 1:21:36 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:
d36f2cb
Parents:
855ebe7
Message:
	Made owl_function_fast*filt return a string and not do the
	        narrowing, to make it more general.
	Added a smartfilter command that creates a filter
	        based on the current message and returns the name
		of the filter.
	Added --smart-filter and --smart-filter-instance options
	        to the next and prev commands.
	Added M-C-n and M-C-p keybindings to "move to next message
	        matching current" and "move to previous message
		matching current"
File:
1 edited

Legend:

Unmodified
Added
Removed
  • keys.c

    r1aee7d9 r7360fab  
    200200  BIND_CMD("DOWN",   "recv:next",      "");
    201201  BIND_CMD("C-n",    "recv:next",      "");
     202  BIND_CMD("M-C-n",  "recv:next --smart-filter", "move to next message matching the current one");
    202203  BIND_CMD("UP",     "recv:prev",      "");
    203204  BIND_CMD("n",      "recv:next-notdel", "");
    204205  BIND_CMD("p",      "recv:prev-notdel", "");
    205206  BIND_CMD("C-p",    "recv:prev",        "");
     207  BIND_CMD("M-C-p",  "recv:prev --smart-filter", "move to previous message matching the current one");
    206208  BIND_CMD("P",      "recv:next-personal", "");
    207209  BIND_CMD("M-P",    "recv:prev-personal", "");
Note: See TracChangeset for help on using the changeset viewer.