Peter Johnson
Peter Johnson
Also move PasHi's `Config` file into `.pashi/default-cfg`
We need to resolve a few things: 1. Whether file names and blank lines around them are numbered. 2. Whether file names are entered as Pascal comments, and if so,...
Need to decide how this new option works with `--sepatator-lines` and `--separator-line-numbering`. If separator lines preceded file name then how do we specify how many blank lines follow file name?...
The change to `--separator-lines` could be permissible regardless of whether a file name is output. If no file name is being output then the second part of the parameter could...
### Considering for v3 ~~Further discussion of this and other v3 development ideas to continue in the [v3 Development Project](https://github.com/delphidabbler/pashi/projects/1)~~
This is how I see the `--help` command working in v3. The `--help` or `-h` command must be the first entry on the command line. The command takes one of...
Another version of `--help` that just lists help commands without explanation would be useful. Maybe call this something else, like `--list` or `--list-commands`.
```pascal function IsNarcissistic(const N: Cardinal; const B: Byte): Boolean; begin if N < B then Exit(True); // trivial narcissistic numbers // number of digits in N var K: Cardinal :=...
If we use `DigitPowerSum` from issue #17 we can reduce the function to: ```pascal function IsNarcissistic(const N: Cardinal; const B: Byte): Boolean; begin if N < B then Exit(True); //...
Consider possibility of following linux model and making program silent, except for error messages, by default. Many linux programs print nothing if they execute successfully.