Changeset a8a3433bfd484aaf85919e99ffbbfd32f6400491
- Timestamp:
- 01/26/07 17:42:07 (3 years ago)
- Author:
- Alejandro R. Sedeño <asedeno@mit.edu>
- Parents:
- ac1bbe23d335d92de71ead394cb3042676203969
- Children:
- 30678ae9bb1c30b7fc37b6cf4e1290116ddebe0c
- git-committer:
- Alejandro R. Sedeño <asedeno@mit.edu> / 2007-01-26T22:42:07Z+0000
- Message:
-
Properly register keybindings. Testing? What? :p
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
rac1bbe2
|
ra8a3433
|
|
| 217 | 217 | if ( *BarnOwl::queue_message{CODE} ) { |
| 218 | 218 | register_owl_commands(); |
| 219 | | register_keys unless $BarnOwl::reload; |
| | 219 | register_keybindings() unless $BarnOwl::reload; |
| 220 | 220 | push @::onMainLoop, sub { BarnOwl::Jabber::onMainLoop(@_) }; |
| 221 | 221 | push @::onGetBuddyList, sub { BarnOwl::Jabber::onGetBuddyList(@_) }; |
| … |
… |
|
| 421 | 421 | |
| 422 | 422 | sub register_keybindings { |
| 423 | | BarnOwl::bindkey("recv j command jwrite"); |
| | 423 | BarnOwl::bindkey("recv j command start-command jwrite "); |
| 424 | 424 | } |
| 425 | 425 | |