From 6c0608660d09e8fbc7475ef0f327d4ba9fcb65d5 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Wed, 14 Nov 2007 18:06:47 +0100 Subject: [PATCH] rename view_tag* names to tag_view* --- awesomerc | 14 +++++++------- config.c | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/awesomerc b/awesomerc index b1267d93..d0495426 100644 --- a/awesomerc +++ b/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 { diff --git a/config.c b/config.c index 933aa79a..859c462b 100644 --- a/config.c +++ b/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}, -- 2.11.4.GIT