Skip to content
#

autocomplete

Here are 977 public repositories matching this topic...

danguilherme
danguilherme commented Sep 28, 2017

Expose a method to show the help string whenever I want to, like it being the default command of my program.

Program would be something like:

program
  .version(package.version)
  .action(() => program.showHelp())
  .command('real command')
  .action((args, options, logger) => /* do stuff */);
program.parse(process.argv);

// ./myprog
/* ... prints help ... */

I

shahidhk
shahidhk commented Nov 1, 2018

Right now query in the nodejs api is just a string. we should support gql-parsed strings too, so that if they are exported elsewhere, it can be used directly.

import gql from 'graphql-tag';

export const GRAPHQL_QUERY=gql`
  query {
    something {
      anotherthing
    }
  }
`;
picocli
deining
deining commented Dec 1, 2019

While answering #878, I realized, that both user manual and quick guide could be improved. Goal should be to get first time users started as quickly as possible.
Thinking back to my first time contact with picocli I remembered it wasn't straightforward for me to get things up and running, either. Don't get me wrong: The picocli manual is very complete, concise and was/is of great help for me in m

doc
tribute
scryan7371
scryan7371 commented Feb 12, 2020

Bug
This plugin is super useful however it makes use of the method componentWillReceiveProps which is no longer supported by React. React continues to evolve in many directions and now they are getting rid of classes in preference to functions. I still have clients that are React heavy but more and more are moving to other frameworks due to the instability and constant breaking changes being in

Improve this page

Add a description, image, and links to the autocomplete topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the autocomplete topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.