-
-
Notifications
You must be signed in to change notification settings - Fork 391
Auto complete definitions within imports #2152
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
Merged
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
47fd19d
auto complete functions from imports
alexnaspo 34e3e7a
Merge branch 'master' into import-func-completions
alexnaspo 31471c7
Merge branch 'master' into import-func-completions
jneira 8b9310e
address PR comments
alexnaspo dcfdbfc
Merge branch 'import-func-completions' of github.com:alexnaspo/haskel…
alexnaspo 863a483
clean up
alexnaspo 9306c91
Merge branch 'master' into import-func-completions
jneira 21af666
remove duplicate HashMap import
alexnaspo 2111b5e
Merge branch 'import-func-completions' of github.com:alexnaspo/haskel…
alexnaspo f899d00
use lookupDefault
alexnaspo 987119b
Merge branch 'master' into import-func-completions
alexnaspoleap b3a0ad7
fuzzy match filter
alexnaspoleap b54678d
Merge branch 'import-func-completions' of github.com:alexnaspo/haskel…
alexnaspoleap 7a73509
add field to exportsMap
alexnaspoleap 10919e0
generate map from modIFace
alexnaspoleap 2c519c4
Update ghcide/src/Development/IDE/Types/Exports.hs
alexnaspo 387e5d0
module name text alias
alexnaspoleap feaa4e9
use hashset; enable local modules
alexnaspoleap 5bfff3d
local module imports now working
alexnaspoleap 8a167a0
derive map from exportMap
alexnaspo 4f85abc
generate maps from list
alexnaspo daf1915
Merge branch 'master' into import-func-completions
alexnaspo 1c1012d
clean up
alexnaspo 80820bb
Merge branch 'import-func-completions' of github.com:alexnaspo/haskel…
alexnaspo b79af6b
addressing PR comments
alexnaspo 7454e6c
Merge branch 'master' into import-func-completions
alexnaspo f0e25c3
clean up
alexnaspo fa7763e
Merge branch 'import-func-completions' of github.com:alexnaspo/haskel…
alexnaspo 1077480
clean up
alexnaspo 88f2c56
Merge branch 'master' into import-func-completions
alexnaspoleap 110ce17
useWithStaleFast
alexnaspo 63fb733
Merge branch 'import-func-completions' of github.com:alexnaspo/haskel…
alexnaspo 6df51ae
Merge branch 'master' into import-func-completions
pepeiborra 440fb82
Merge branch 'master' into import-func-completions
mergify[bot] 689b1b3
Merge branch 'master' into import-func-completions
mergify[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import Control.Applicative (Alternative) | ||
import qualified Data.List | ||
|
||
main :: IO () | ||
main = putStrLn "hello" | ||
|
||
foo :: Either a b -> Either a b | ||
foo = id |
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.
Uh oh!
There was an error while loading. Please reload this page.