Changeset View
Changeset View
Standalone View
Standalone View
src/config/arc/ArcanistArcConfigurationEngineExtension.php
| Show First 20 Lines • Show All 119 Lines • ▼ Show 20 Lines | return array( | ||||
| ->setHelp( | ->setHelp( | ||||
| pht( | pht( | ||||
| 'Specifies the default behavior when "arc land" is run with '. | 'Specifies the default behavior when "arc land" is run with '. | ||||
| 'no "--onto" flag.')) | 'no "--onto" flag.')) | ||||
| ->setExamples( | ->setExamples( | ||||
| array( | array( | ||||
| '["master"]', | '["master"]', | ||||
| )), | )), | ||||
| id(new ArcanistStringListConfigOption()) | |||||
| ->setKey('pager') | |||||
| ->setDefaultValue(array()) | |||||
| ->setSummary(pht('Default pager command.')) | |||||
| ->setHelp( | |||||
| pht( | |||||
| 'Specify the pager command to use when displaying '. | |||||
| 'documentation.')) | |||||
| ->setExamples( | |||||
| array( | |||||
| '["less", "-R", "--"]', | |||||
| )), | |||||
| id(new ArcanistStringConfigOption()) | id(new ArcanistStringConfigOption()) | ||||
| ->setKey('arc.land.onto-remote') | ->setKey('arc.land.onto-remote') | ||||
| ->setSummary(pht('Default list of "onto" remote for "arc land".')) | ->setSummary(pht('Default list of "onto" remote for "arc land".')) | ||||
| ->setHelp( | ->setHelp( | ||||
| pht( | pht( | ||||
| 'Specifies the default behavior when "arc land" is run with '. | 'Specifies the default behavior when "arc land" is run with '. | ||||
| 'no "--onto-remote" flag.')) | 'no "--onto-remote" flag.')) | ||||
| ->setExamples( | ->setExamples( | ||||
| Show All 16 Lines | |||||