cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Neo4j Desktop Editor

Where can I learn about all the editing capabilities of desktop’s editor?  Is there documentation? 

thanks in advance. 

1 ACCEPTED SOLUTION

Hi, you mean the Editor in Browser I presume.

That's basically Monaco the same editor as in VS Code.
You  get highlighting, code-completion, parent-matching, and if you press F1 you get the command palette.

here is a blog post about it https://medium.com/neo4j/neo4j-browser-embraces-the-monaco-editor-bc8415cac22e

The code for it is in the Browser repository. https://github.com/neo4j-devtools/neo4j-browser

Previously we used to use CodeMirror, which is still available as a separate editor:

https://github.com/neo4j-contrib/cypher-editor

View solution in original post

4 REPLIES 4

TrevorS
Community Team
Community Team

Hello @glilienfield We do have our online documentation here.
Please let me know if this is not providing you with what you are looking for specifically!

 

TrevorS
Community Specialist

@TrevorS, thanks for the reply.  I have seen that, but it doesn't contain the info I am looking for. I recall a presentation I watched where the individual discussed how the Desktop app was updated with a new editor. I think it was 'D3'. It had a lot of cool editing features. I would like to know wh

Hi, you mean the Editor in Browser I presume.

That's basically Monaco the same editor as in VS Code.
You  get highlighting, code-completion, parent-matching, and if you press F1 you get the command palette.

here is a blog post about it https://medium.com/neo4j/neo4j-browser-embraces-the-monaco-editor-bc8415cac22e

The code for it is in the Browser repository. https://github.com/neo4j-devtools/neo4j-browser

Previously we used to use CodeMirror, which is still available as a separate editor:

https://github.com/neo4j-contrib/cypher-editor

that is exactly what I am looking for.  Thank you very much..