8000 Comparing msteveb:master...andreas-kupries:master · msteveb/linenoise · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: msteveb/linenoise
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: andreas-kupries/linenoise
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 13 commits
  • 2 files changed
  • 3 contributors

Commits on Feb 21, 2013

  1. New feature: Support hidden input (for passwords and the like).

    Controlled by internal global flag variable "is_hidden".
    Added two new accessor functions to set and retrieve the flag's state.
    (Avoided changing the signature of linenoise()).
    
    Activating hidden input
    - Causes all entered characters to be echoed back as '*'.
    - Disables navigating and searching the history.
    - Disables line completion.
    - All other editing commands are left active.
    andreas-kupries committed Feb 21, 2013
    Configuration menu
    Copy the full SHA
    89c25c4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b8cb2f7 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2013

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

Commits on Oct 17, 2013

  1. Merge branch 'msteveb_master'

    Andreas Kupries committed Oct 17, 2013
    Configuration menu
    Copy the full SHA
    76caa7c View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2013

  1. Bug fix. Ensure that current->cols is initialized even when both stdi…

    …n/stdout are redirected (which prevents the raw mode from getting set).
    Andreas Kupries committed Oct 18, 2013
    Configuration menu
    Copy the full SHA
    b0ba152 View commit details
    Browse the repository at this point in the history
  2. Bug fix. Redid the fallback code for getting the terminal width via v…

    …t100 control sequences to not change the visible cursor location.
    
    Instead of
    - go far right
    - query location
    we now do
    (1) query location
    (2) go far right
    (3) query location again
    (4) move left to the original location as reported by (1).
    
    Only if (1) succeeds and (3) fails will the visible cursor location change (moving to far left).
    Placed the code to request cursor location and parse the response into its own helper function.
    
    The old way of doing it left the cursor at far right, and could mess up an outer shell prompt.
    Andreas Kupries committed Oct 18, 2013
    Configuration menu
    Copy the full SHA
    9e25655 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2013

  1. Merge branch 'msteveb_master'. Whitespace changes, and added comments…

    … for my bugfixes.
    Andreas Kupries committed Oct 21, 2013
    Configuration menu
    Copy the full SHA
    e77c968 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2014

  1. Merge branch 'msteveb_master'.

    Added proper comments for my personal API functions.
    Andreas Kupries committed Jun 2, 2014
    Configuration menu
    Copy the full SHA
    aa63904 View commit details
    Browse the repository at this point in the history
  2. Extended the linenoise API with a function returning the terminal hei…

    …ght.
    Andreas Kupries committed Jun 2, 2014
    Configuration menu
    Copy the full SHA
    129a02f View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2014

  1. Extended the handling of hidden input. Allow existing echo of stars, …

    …and newly allow supression of all echo.
    Andreas Kupries committed Aug 22, 2014
    Configuration menu
    Copy the full SHA
    3ba9c1a View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2014

  1. Configuration menu
    Copy the full SHA
    d1feefc View commit details
    Browse the repository at this point in the history
  2. Switched the modi for hidden input around. Default now is full suppre…

    …ssion, star-echo moved aside to be extended mode available on request.
    Andreas Kupries committed Aug 27, 2014
    Configuration menu
    Copy the full SHA
    12f8b83 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2015

  1. Fixed bug in the handling of hidden input on windows. We must set the…

    … cursor to the new position after printing the prompt. Without this the prompt is printed with the cursor staying the beginning of the line.
    
    This is specific to windows. Unix is not affected at all.
    Andreas Kupries committed Dec 15, 2015
    Configuration menu
    Copy the full SHA
    a2389c9 View commit details
    Browse the repository at this point in the history
Loading
0