santinic / how2

AI for the Command Line
https://how2terminal.com
MIT License
5.72k stars 156 forks source link

Undocumented "-i" option #46

Closed danielkop closed 1 year ago

danielkop commented 8 years ago

In lib\index.js

if(argv.i) {
    how2.main(text, argv.l);
}
else {
    how2.magic(text, argv.l);
}

What's the purpose of -i? it's undocumented. Should it be removed (along with how2.magic) or Added to readme.md and help?

brunoceleste commented 8 years ago

According to the README file, it seems the -i option will be used to search for your clipboard text.

Add automatic copy/paste from -i to command line
danielkop commented 8 years ago

So it should probably be on a separate branch until ready On Feb 25, 2016 8:33 PM, "Bruno Celeste" notifications@github.com wrote:

According to the README file, it seems the -i option will be used to search for your clipboard text.

Add automatic copy/paste from -i to command line

— Reply to this email directly or view it on GitHub https://github.com/santinic/how2/issues/46#issuecomment-188920890.

danielkop commented 8 years ago

@santinic How would you like to advance this? Finish implementing the -i? Document it? Or move it to a separate branch for now?