about summary refs log tree commit diff stats
ModeNameSize
-rw-r--r--.hgtags812log stats plain blame
-rw-r--r--LICENSE1192log stats plain blame
-rw-r--r--Makefile1542log stats plain blame
-rw-r--r--README1088log stats plain blame
-rw-r--r--client.c9045log stats plain blame
-rw-r--r--config.arg.h2766log stats plain blame
-rw-r--r--config.default.h2662log stats plain blame
-rw-r--r--config.mk472log stats plain blame
-rw-r--r--draw.c4658log stats plain blame
-rw-r--r--dwm.13245log stats plain blame
-rw-r--r--dwm.h7850log stats plain blame
-rw-r--r--dwm.png373log stats plain blame
-rw-r--r--event.c8003log stats plain blame
-rw-r--r--main.c7599log stats plain blame
-rw-r--r--tag.c2557log stats plain blame
-rw-r--r--util.c1222log stats plain blame
-rw-r--r--view.c6858log stats plain blame
e) } func SelectMessage(aerc *widgets.Aerc, args []string) error { if len(args) != 2 { return errors.New("Usage: :select-message <n>") } var ( n int = 1 err error ) if len(args) > 1 { n, err = strconv.Atoi(args[1]) if err != nil { return errors.New("Usage: :select-message <n>") } } acct := aerc.SelectedAccount() if acct == nil { return errors.New("No account selected") } acct.Messages().Select(n) return nil }