Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dynamic autocompletion #60

Merged
merged 5 commits into from
Jul 26, 2016
Merged

Dynamic autocompletion #60

merged 5 commits into from
Jul 26, 2016

Commits on Jun 24, 2016

  1. Dynamic autocompletion implemented

    Now there is a new item type "PcItemDynamic" which takes function as
    parameter.
    
    When it comes to autocomplete at this position, the function is called,
    the whole line is given to it (for example if autocompletion depend on
    previous autocompleted field) and functio should return possible strings
    how to continue.
    
    Example usage:
     * listing some dynamic key-value storage
     * listing files in directory
    setnicka committed Jun 24, 2016
    Configuration menu
    Copy the full SHA
    877afc8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    77b51ba View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2016

  1. Dynamic autocompletion: Internal Do() is passing the original full line

    To serve it to dynamic autocompletion functions. Previously passed line
    was only following segment (which doesn't work).
    setnicka committed Jun 30, 2016
    Configuration menu
    Copy the full SHA
    e4f60fa View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2016

  1. Dynamic autocompletion: New dynamic interface added + type assertion …

    …in Do function
    
    Do function was split into doInternal with changed declaration and Do
    with original declaration.
    setnicka committed Jul 19, 2016
    Configuration menu
    Copy the full SHA
    7c67f32 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2016

  1. Configuration menu
    Copy the full SHA
    fc37099 View commit details
    Browse the repository at this point in the history