mirror of
https://github.com/daylinmorgan/hwylterm.git
synced 2024-11-16 06:28:32 -06:00
add whitespace
This commit is contained in:
parent
a40aed047d
commit
0a728d8727
1 changed files with 4 additions and 3 deletions
|
@ -137,6 +137,7 @@ type
|
|||
long*: string
|
||||
help*: NimNode
|
||||
node: NimNode
|
||||
|
||||
CliFlag = object
|
||||
name*: string
|
||||
ident*: NimNode
|
||||
|
@ -145,6 +146,7 @@ type
|
|||
short*: char
|
||||
long*: string
|
||||
help*: NimNode
|
||||
|
||||
CliCfg = object
|
||||
stopWords*: seq[string]
|
||||
styles: NimNode
|
||||
|
@ -163,12 +165,11 @@ type
|
|||
inheritFlags*: seq[string]
|
||||
root*: bool
|
||||
|
||||
{.push hint[XDeclaredButNotUsed]:off .}
|
||||
# some debug procs I use to wrap my ahead aroung the magic of *macro*
|
||||
func `<<<`(n: NimNode) =
|
||||
func `<<<`(n: NimNode) {.used.} =
|
||||
## for debugging macros
|
||||
debugEcho treeRepr n
|
||||
func `<<<`(s: string) =
|
||||
func `<<<`(s: string) {.used.} =
|
||||
debugEcho s
|
||||
|
||||
func bad(n: NimNode, argument: string = "") =
|
||||
|
|
Loading…
Reference in a new issue