diff options
author | Max Kellermann <max@duempel.org> | 2008-11-18 23:58:28 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-18 23:58:28 +0100 |
commit | f3849aa2b3eb49ca6a903e6627f97540c1a383f1 (patch) | |
tree | fd264cfe8ca66ae006983bd3992031f374709048 /src/command.c | |
parent | 77b6145e75c6e1641002dd9675bcf3b5439c3718 (diff) | |
download | mpd-f3849aa2b3eb49ca6a903e6627f97540c1a383f1.tar.gz mpd-f3849aa2b3eb49ca6a903e6627f97540c1a383f1.tar.xz mpd-f3849aa2b3eb49ca6a903e6627f97540c1a383f1.zip |
screen_song: new screen which views song information
This new screen views all information available on a song: its
location, file name, and tags.
Diffstat (limited to 'src/command.c')
-rw-r--r-- | src/command.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/command.c b/src/command.c index a1737a942..9dae30be6 100644 --- a/src/command.c +++ b/src/command.c @@ -142,6 +142,9 @@ static command_definition_t cmds[] = { { { '"', 0, 0 }, 0, CMD_GO_PARENT_DIRECTORY, "go-parent-directory", N_("Go to parent directory") }, + { { 'i', 0, 0 }, 0, CMD_VIEW, "view", + N_("View the song") }, + { { 'G', 0, 0 }, 0, CMD_LOCATE, "locate", N_("Locate song in browser") }, |