Eniaczz
Eniaczz

Reputation: 73

Nuclide + Atom failed to find symbol with ctags

So I've installed Facebook's Nuclide on top of my Atom editor.
Seems it provides many features.
My problem is that when I setup a remote project folder, I cannot get find symbol functioning any more.

The alt+cmd+g will through errors instead of generating ctags file in the project folder.
I ssh to the server and manually ctags -R . in the folder.
However, inside Atom/Nuclide, cmd+shift+r complains no tags file...

Please help. Any clues welcome.

Upvotes: 2

Views: 250

Answers (1)

Nat Mote
Nat Mote

Reputation: 4086

This functionality is provided by the symbols-view package, which ships as part of Atom. Unfortunately it reads from the filesystem directly, so it is not compatible with Nuclide's remote connection. There has been some talk of refactoring it to use Atom's service-hub (which is how Atom packages are supposed to talk to each-other).

If that happens, Nuclide could provide it with the information from outline view and it would be able to work remotely. The functionality would not be exactly the same but for most purposes it would be fine.

However, nobody has yet put in the resources to drive the refactoring home. Here is a recent effort; I hope it is completed.

Upvotes: 1

Related Questions