Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 8c3e878

Browse files
committed
add slug to list for another filename option
1 parent c5f6b89 commit 8c3e878

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/commands/list.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,15 @@ cmd.handler = function(argv) {
7272
if (problem.locked) ++stat.locked;
7373
if (problem.starred) ++stat.starred;
7474

75-
log.printf('%s %s %s [%=4s] %-60s %-6s (%s %%)',
75+
log.printf('%s %s %s [%=4s] %-60s %-6s (%s %%) %-60s',
7676
(problem.starred ? chalk.yellow(icon.like) : icon.empty),
7777
(problem.locked ? chalk.red(icon.lock) : icon.nolock),
7878
h.prettyState(problem.state),
7979
problem.fid,
8080
problem.name,
8181
h.prettyLevel(problem.level),
82-
(problem.percent || 0).toFixed(2));
82+
(problem.percent || 0).toFixed(2),
83+
problem.slug);
8384

8485
if (argv.extra) {
8586
let badges = [problem.category];

0 commit comments

Comments
 (0)