Skip to content
This repository has been archived by the owner on Jul 22, 2019. It is now read-only.

Improve completion class/interface/trait completion #195

Commits on Oct 28, 2016

  1. 2 Configuration menu
    Copy the full SHA
    fe83896 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    712313c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6aeb3d3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2786149 View commit details
    Browse the repository at this point in the history
  5. Remove readme file

    nevadascout committed Oct 28, 2016
    Configuration menu
    Copy the full SHA
    5b8f7b2 View commit details
    Browse the repository at this point in the history
  6. Add symlinked readme file

    nevadascout committed Oct 28, 2016
    Configuration menu
    Copy the full SHA
    034d063 View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2016

  1. Configuration menu
    Copy the full SHA
    bdd60ff View commit details
    Browse the repository at this point in the history
  2. Prevent exception on completion for use statements

        There was an exception here with 'trying to get index 0 of undefined' most of the times while auto completing
    DaGhostman committed Dec 16, 2016
    Configuration menu
    Copy the full SHA
    e1ab050 View commit details
    Browse the repository at this point in the history
  3. Make completion suggestions fluent to the context they are used in

     - Should suggest only classes when 'new' is preceeding the call; and
    - Should suggest only classes when 'extends' is before the current position of the cursor (before 'implements')
    - Should suggest only interfaces when the cursor is after a 'implements' key word
    DaGhostman committed Dec 16, 2016
    Configuration menu
    Copy the full SHA
    7754b6c View commit details
    Browse the repository at this point in the history
  4. Imroved fluency of the suggestions

    - Should not insert namespace separator when using in use statements for the current file
    - Should avoid conflicts whith variables/methods which contain the keywords 'new', 'implements', 'extends' and 'use' somewhere in their names
    DaGhostman committed Dec 16, 2016
    Configuration menu
    Copy the full SHA
    a66d815 View commit details
    Browse the repository at this point in the history