This repository has been archived by the owner on Feb 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Add support for window/showMessageRequest #14
Open
ksdme
wants to merge
26
commits into
coala:master
Choose a base branch
from
ksdme:add-show-message-req
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Update .gitignore with .idea/ as per Gradle and Maven auto import.
Drop vscode client since no component of coala-ls now is specific to or depends on VSCode.
This updates the README text and updates the demo assets.
Due to the heavy restructuring required to adapt this module into architecture for coala-ls the old codebase is dropped.
Add test resource file with intentional syntax breaks or containing expected diagnostics. Add test helpers.
Configures test env to add coalals to sys.path.
Adds files modules and corrosponding tests.
Add log.py that can handle configuring logging.
Add wrappers for methods and streams.
Add support for job tracking, concurrent execution via abstract process pools.
Add initial mechanism to run coala analyser and gather the results.
Add module to process the results and convert coala diagnostic messages to language server supported messages. Supports code fixing messages also.
Add language server class capable of handling event notifications and respond accordingly.
Add functions to invoke language server instance with respective streams as per the invocation mode.
Add __main__ to make coalals an executable module.
Update the requirement to latest versions.
Update the test requirements to use pytest.
- Increase coverage requirement to 100%. - Update omissions in coverage. - Updates travis to use py.test.
Add script to start coala-ls.
To make room for the new additions to results module, this is being refactored to a new sub module.
Add method to read the contents off the disk of a corrosponding FileProxy instance.
Parsing patches generated by coala core can be performed by whatthepatch.
Support parsing and processing fixes from coala core and transformations and models compatible with lsp.
Add support for collection of fixes from the result of coala core analysis and produce lsp compatible TextEdits.
Update langserver to support a formatting request types. Currently formatting type requests fixes any code it can irrespective of the nature. Also, updates tests to check for documentFormattingProvider.
Add support for window/showMessageRequest so that coala-ls can interact with server when it requires.
ksdme
force-pushed
the
add-show-message-req
branch
from
July 9, 2018 08:53
f0ea1cc
to
99c0663
Compare
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Extends support to the said request.
Note: This commit is built on top of #13. The context of this PR is only the topmost commit.