Grzegorz Krasoń
Grzegorz Krasoń
Yes, shifting is what I mean. Idea is inspired by Python: ```python In [1]: x = [10, 20 ,30, 40] In [2]: del x[2] In [3]: x Out[3]: [10, 20,...
Regarding `edit:get-var`... I was working on python integration layer. I ended up with: ```sh var x = (num 123) var y = (num 2) var res: = (ns (pyeval [&x=$x...
One more use case: I would like to have a handy command that shows definition of a function available in the interactive session. I ended up with this, which is...
This is actually what you call a superpackage [here](https://github.com/tim-lebedkov/npackd/issues/436). How should we define "type" and "url" attributes of such package?
Thanks for considering the enhancement :)
Thanks :+1:
In my case its the type of the package would decide where to install it. For example regular applicatins go to "C:\Program Files". But I also use npackd to distribute...
True. Thank you for suggestions!
Thanks @arcuru. Feature request added.
For instance ``` curl -v example.org ``` writes html to stdout and logs to stderr. Topic also discussed here: https://stackoverflow.com/a/4919110