##// END OF EJS Templates
bookmarks: set VALUE in push/pull
Will Maier -
r12302:6ad36bca default
parent child Browse files
Show More
@@ -504,10 +504,12 b' def uisetup(ui):'
504 504
505 505 entry = extensions.wrapcommand(commands.table, 'pull', pull)
506 506 entry[1].append(('B', 'bookmark', [],
507 _("bookmark to import")))
507 _("bookmark to import"),
508 _('BOOKMARK')))
508 509 entry = extensions.wrapcommand(commands.table, 'push', push)
509 510 entry[1].append(('B', 'bookmark', [],
510 _("bookmark to export")))
511 _("bookmark to export"),
512 _('BOOKMARK')))
511 513 entry = extensions.wrapcommand(commands.table, 'incoming', incoming)
512 514 entry[1].append(('B', 'bookmarks', False,
513 515 _("compare bookmark")))
General Comments 0
You need to be logged in to leave comments. Login now