Jeremy Cowgar
Jeremy Cowgar
`CREATE TABLE a (b integer references c (id) on update restrict, other integer)` results in ``` CREATE TABLE a ( b integer REFERENCES c (id) ON UPDATE RESTRICT, other integer...
We should be able to detect when it is a negate operator vs. minus, i.e. ``` result = -result ``` should keep the `-` right against the variable name, but...
For example: ``` If ageOfPerson > 18 And countryHasMilitary = True And militaryAge = 18 And person.WantsToJoinMilitary = True Then ``` Should become something like: ``` If ageOfPerson > 18...
For example, a common rule is to separate variable declarations from executing code: ``` Dim i As Integer Dim b As String DoSomeCode ``` Would become: ``` Dim i As...
You can currently specify the default option when you access it: ``` Dim name As String = options.StringValue("name", "World") ``` But if you access it multiple times, you have to...
For example, ``` pandoc -a title:'Welcome to PanDoc' -a icon-dir:~/icons -a foo:bar ```
Sometimes you will want **exactly** 1 extra, other times you will want at least 1 extra, but maybe more. I guess it is also conceivable that you may want not...
Would be helpful for some options to have multiple ways of setting it, for example -h, --help, -? all meaning HELP.
I have imported a large number of files from just plain markdown. Tasks were marked up as: - [ ] Task A which is not done - [X] #3 I...