1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-25 01:05:37 +00:00
elinks/contrib/keybind.conf
Petr Baudis 0f6d4310ad Initial commit of the HEAD branch of the ELinks CVS repository, as of
Thu Sep 15 15:57:07 CEST 2005. The previous history can be added to this
by grafting.
2005-09-15 15:58:31 +02:00

36 lines
934 B
Plaintext

# Example keybinding
# $Id: keybind.conf,v 1.1 2002/06/30 21:30:24 pasky Exp $
# Copy this file to ~/.elinks/ and use include "keybind.conf" in
# "elinks.conf" to include it.
# vi-like navigation keys
bind "main" "j" = "down"
bind "main" "k" = "up"
bind "main" "h" = "back"
bind "main" "l" = "enter"
bind "main" "g" = "home"
bind "main" "G" = "end"
# Keys close to the above
bind "main" "i" = "scroll-up"
bind "main" "m" = "scroll-down"
bind "main" "o" = "goto-url"
bind "main" "O" = "goto-url-current"
# Netscape-like, just for the hell of it
bind "main" "Alt-o" = "goto-url"
# Emacs-like paging keys
# Ctrl prefixed keys must be capital :-(
bind "main" "Alt-v" = "page-up"
bind "main" "Ctrl-V" = "page-down"
# Emacs-like editing keys
bind "edit" "Ctrl-B" = "left"
bind "edit" "Ctrl-F" = "right"
# Analogous to goto_line_cmd in my Jed and Emacs setups
bind "main" "Alt-g" = "goto-url"
bind "main" "Alt-G" = "goto-url-current"