coffeepots

Results 6 issues of coffeepots

The standard CTRL-F doesn't work so well with Nim's permissive naming conversion. Incorporating nimgrep into the find would also mean Aporia could have a 'find in files' and/or 'find in...

Feature
Low Priority

Be able to set bookmarks for cursor positions in a module/file with some key combination (usually ctrl-shift-number) and move to that bookmark with another key combination (usually ctrl-number). Some editors...

Feature
Low Priority

# Nimbus 1.0 TODO ## Summary Meta-issue of the currently known work remaining to reach 1.0. ### Chain, State & VM - [ ] Missing functionality: - [x] Fetch block...

EL

For `int32` there were some issues with overflow when `int` is used in some cases. To resolve this, it may be worth introducing a `WordInt` or `Int` alias in a...

ARC and ORC allow RAII like handling of queries, allowing automatic freeing and cleanup after use. This enables easier 'throw away' queries. Currently this support is pending a fix for...

Module A: ``` macro ona*(body: untyped): untyped = discard macro on*(body: untyped): untyped = discard ``` Module B: ``` import modulea ona: echo "a" # no problem on: echo "b"...

Macros