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
|
long*: string
|
||||||
help*: NimNode
|
help*: NimNode
|
||||||
node: NimNode
|
node: NimNode
|
||||||
|
|
||||||
CliFlag = object
|
CliFlag = object
|
||||||
name*: string
|
name*: string
|
||||||
ident*: NimNode
|
ident*: NimNode
|
||||||
|
@ -145,6 +146,7 @@ type
|
||||||
short*: char
|
short*: char
|
||||||
long*: string
|
long*: string
|
||||||
help*: NimNode
|
help*: NimNode
|
||||||
|
|
||||||
CliCfg = object
|
CliCfg = object
|
||||||
stopWords*: seq[string]
|
stopWords*: seq[string]
|
||||||
styles: NimNode
|
styles: NimNode
|
||||||
|
@ -163,12 +165,11 @@ type
|
||||||
inheritFlags*: seq[string]
|
inheritFlags*: seq[string]
|
||||||
root*: bool
|
root*: bool
|
||||||
|
|
||||||
{.push hint[XDeclaredButNotUsed]:off .}
|
|
||||||
# some debug procs I use to wrap my ahead aroung the magic of *macro*
|
# some debug procs I use to wrap my ahead aroung the magic of *macro*
|
||||||
func `<<<`(n: NimNode) =
|
func `<<<`(n: NimNode) {.used.} =
|
||||||
## for debugging macros
|
## for debugging macros
|
||||||
debugEcho treeRepr n
|
debugEcho treeRepr n
|
||||||
func `<<<`(s: string) =
|
func `<<<`(s: string) {.used.} =
|
||||||
debugEcho s
|
debugEcho s
|
||||||
|
|
||||||
func bad(n: NimNode, argument: string = "") =
|
func bad(n: NimNode, argument: string = "") =
|
||||||
|
|
Loading…
Reference in a new issue