trogdoro / xiki

A shell console with GUI features
http://xiki.org
Other
3.76k stars 208 forks source link

Unclear what << computer/ command does #154

Open thams opened 8 years ago

thams commented 8 years ago

it leads to

@ip/ @disk/ @cpu/ @processes/ @network/

none of which respond to c-x

trogdoro commented 8 years ago

It was using the old "@" syntax rather than the new "=" syntax, for delegation. Here's a Xiki diff of the change I made to fix it. I'll push this in a few weeks.

~/projects/xiki/commands/

thams commented 8 years ago

Excellent. That works!

And I notice that from bash, I can go directly there via

xsh -computer

trogdoro commented 8 years ago

And I notice that from bash, I can go directly there via

xsh -computer

Yes, or:

$ xsh computer/

In the new (not yet pushed) version of Xiki, "$ xsh computer/" will be the supported syntax. Also you'll be able to just type "computer" at a bash prompt and then ^G, as a shortcut for this.

Note that in the newest version, "$ xsh -computer" will do something different.

--Craig