Rename left/right/up/down relative to active pane to add -of suffix

(left-of/right-of/etc) to remove conflict with left/right meaning
leftmost or rightmost pane. From Ben Boeckel.
This commit is contained in:
nicm
2015-08-12 08:55:20 +00:00
parent 5ec3621101
commit 13b7fd82c1
2 changed files with 8 additions and 8 deletions

View File

@ -102,10 +102,10 @@ const char *cmd_find_pane_table[][2] = {
{ "{top-right}", "top-right" },
{ "{bottom-left}", "bottom-left" },
{ "{bottom-right}", "bottom-right" },
{ "{up}", "{up}" },
{ "{down}", "{down}" },
{ "{left}", "{left}" },
{ "{right}", "{right}" },
{ "{up-of}", "{up}" },
{ "{down-of}", "{down}" },
{ "{left-of}", "{left}" },
{ "{right-up}", "{right}" },
{ NULL, NULL }
};