rename view_tag* names to tag_view*
This commit is contained in:
parent
4ca7059efc
commit
6c0608660d
14
awesomerc
14
awesomerc
|
@ -142,12 +142,12 @@ mouse
|
|||
tag
|
||||
{
|
||||
button = "4"
|
||||
command = "view_tag_next"
|
||||
command = "tag_view_next"
|
||||
}
|
||||
tag
|
||||
{
|
||||
button = "5"
|
||||
command = "view_tag_previous"
|
||||
command = "tag_view_previous"
|
||||
}
|
||||
root
|
||||
{
|
||||
|
@ -158,12 +158,12 @@ mouse
|
|||
root
|
||||
{
|
||||
button = "4"
|
||||
command = "view_tag_next"
|
||||
command = "tag_view_next"
|
||||
}
|
||||
root
|
||||
{
|
||||
button = "5"
|
||||
command = "view_tag_previous"
|
||||
command = "tag_view_previous"
|
||||
}
|
||||
client
|
||||
{
|
||||
|
@ -296,19 +296,19 @@ keys
|
|||
{
|
||||
modkey = {"Mod4"}
|
||||
key = "Escape"
|
||||
command = "view_tag_prev_selected"
|
||||
command = "tag_view_prev_selected"
|
||||
}
|
||||
key
|
||||
{
|
||||
modkey = {"Mod4"}
|
||||
key = "Left"
|
||||
command = "view_tag_previous"
|
||||
command = "tag_view_previous"
|
||||
}
|
||||
key
|
||||
{
|
||||
modkey = {"Mod4"}
|
||||
key = "Right"
|
||||
command = "view_tag_next"
|
||||
command = "tag_view_next"
|
||||
}
|
||||
key
|
||||
{
|
||||
|
|
6
config.c
6
config.c
|
@ -76,9 +76,9 @@ const NameFuncLink UicbList[] = {
|
|||
{"tag_toggleview", uicb_tag_toggleview},
|
||||
{"client_toggletag", uicb_client_toggletag},
|
||||
{"tag_view", uicb_tag_view},
|
||||
{"view_tag_prev_selected", uicb_tag_prev_selected},
|
||||
{"view_tag_previous", uicb_tag_viewprev},
|
||||
{"view_tag_next", uicb_tag_viewnext},
|
||||
{"tag_view_prev_selected", uicb_tag_prev_selected},
|
||||
{"tag_view_prev", uicb_tag_viewprev},
|
||||
{"tag_view_next", uicb_tag_viewnext},
|
||||
/* layout.c */
|
||||
{"setlayout", uicb_setlayout},
|
||||
{"focusnext", uicb_focusnext},
|
||||
|
|
Loading…
Reference in New Issue