rename view_tag* names to tag_view*

This commit is contained in:
Julien Danjou 2007-11-14 18:06:47 +01:00
parent 4ca7059efc
commit 6c0608660d
2 changed files with 10 additions and 10 deletions

View File

@ -142,12 +142,12 @@ mouse
tag tag
{ {
button = "4" button = "4"
command = "view_tag_next" command = "tag_view_next"
} }
tag tag
{ {
button = "5" button = "5"
command = "view_tag_previous" command = "tag_view_previous"
} }
root root
{ {
@ -158,12 +158,12 @@ mouse
root root
{ {
button = "4" button = "4"
command = "view_tag_next" command = "tag_view_next"
} }
root root
{ {
button = "5" button = "5"
command = "view_tag_previous" command = "tag_view_previous"
} }
client client
{ {
@ -296,19 +296,19 @@ keys
{ {
modkey = {"Mod4"} modkey = {"Mod4"}
key = "Escape" key = "Escape"
command = "view_tag_prev_selected" command = "tag_view_prev_selected"
} }
key key
{ {
modkey = {"Mod4"} modkey = {"Mod4"}
key = "Left" key = "Left"
command = "view_tag_previous" command = "tag_view_previous"
} }
key key
{ {
modkey = {"Mod4"} modkey = {"Mod4"}
key = "Right" key = "Right"
command = "view_tag_next" command = "tag_view_next"
} }
key key
{ {

View File

@ -76,9 +76,9 @@ const NameFuncLink UicbList[] = {
{"tag_toggleview", uicb_tag_toggleview}, {"tag_toggleview", uicb_tag_toggleview},
{"client_toggletag", uicb_client_toggletag}, {"client_toggletag", uicb_client_toggletag},
{"tag_view", uicb_tag_view}, {"tag_view", uicb_tag_view},
{"view_tag_prev_selected", uicb_tag_prev_selected}, {"tag_view_prev_selected", uicb_tag_prev_selected},
{"view_tag_previous", uicb_tag_viewprev}, {"tag_view_prev", uicb_tag_viewprev},
{"view_tag_next", uicb_tag_viewnext}, {"tag_view_next", uicb_tag_viewnext},
/* layout.c */ /* layout.c */
{"setlayout", uicb_setlayout}, {"setlayout", uicb_setlayout},
{"focusnext", uicb_focusnext}, {"focusnext", uicb_focusnext},