Skip to content

Commit

Permalink
Alias "ls" for "show".
Browse files Browse the repository at this point in the history
  • Loading branch information
ahefner committed Mar 8, 2010
1 parent b519790 commit aca90ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion shuffletron.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -1417,7 +1417,8 @@ already playing will be interrupted by the next song in the queue.
((char= (aref line 0) #\/) (refine-query (subseq line 1)))

;; Show all matches
((string= line "show") (show-current-query))
((or (string= line "show") (string= line "ls"))
(show-current-query))

;; Quit
((or (string= line "quit") (string= line "exit")) (quit))
Expand Down

0 comments on commit aca90ff

Please sign in to comment.