remove the aliases concept. commands is all we need + synchronize command names with...
[uzbl-mobile] / sampleconfig
1 # example uzbl config. in a real config, we should obey the xdg spec
2
3 # all keys in the behavior group are optional.  if not set, the corresponding behavior is disabed.
4 # bindings_internal denote keys to trigger actions internally in uzbl
5 # bindings_external denote keys to trigger scripts outside uzbl
6
7 # keyboard behavior is vimstyle by default (all actions -> 1 key). set
8 # always_insert_mode to always be in insert mode and disable going out of it.
9 # if you do this, make sure you've set a modkey so you can reach the actions
10 # from insert mode by combining them with the modkey
11
12 [behavior]
13 history_file = /tmp/uzbl.history
14 download_handler = ./extra/download.sh
15 fifo_dir = /tmp
16 always_insert_mode = 0
17 modkey = Mod4
18
19 [bindings_internal]
20 next = n
21 forward = m
22 stop = s
23 refresh = r
24 reload = R
25 home = h
26 follow_link_here = f
27 follow_link_new_tab = F
28 follow_link_new_window = w
29 zoom_in = +
30 zoom_out = -
31
32
33 [bindings_external]
34 ./extra/insert_bookmark.sh = b
35 ./extra/load_url_from_history.sh = u
36 ./extra/load_url_from_bookmarks.sh = U
37
38
39 [network]