language-scala icon indicating copy to clipboard operation
language-scala copied to clipboard

can it show the function's params that in scala libs or users' class functions ?

Open TopSpoofer opened this issue 9 years ago • 3 comments

when i use this plus, i can't get the effect like the idea, it can't show the function's param type! sometimes i input a class name( scala lib's class or my class ) or object name and add a "." after class name, it can't show the functions in this class or object !

TopSpoofer avatar Nov 04 '15 15:11 TopSpoofer

It sounds like you are looking for IDE level functionality from the Atom text editor. Intellij IDEA is compiling the source code as well as all the project's library code and looking at the compiler's output to provide that information. The language-scala plugin for Atom is parsing a single text file and doesn't provide that level of integration. This is largely a matter of personal preference. See http://radar.oreilly.com/2014/01/to-ide-or-not-to-ide.html

gangstead avatar Nov 04 '15 16:11 gangstead

@dglAndlele you should probably try https://github.com/ensime/ensime-atom. It's much of a work in progress, but it has the mentioned autocomplete functionality, as well as jumping to the symbol definition and some other useful things.

laughedelic avatar Nov 04 '15 17:11 laughedelic

Thank you

TopSpoofer avatar Nov 05 '15 01:11 TopSpoofer