Giter Site home page Giter Site logo

Comments (4)

rsese avatar rsese commented on August 25, 2024

Sorry for the delay @ludwigkraatz - I'm not an engineer but chatted with another maintainer so wanted to share what I learned (at a high level); basically, workspace.open is really expecting to open a local file on disk. If that's the case, Atom should be able to handle the rest.

In your case, it looks like you have custom code because you want to work with data from a database - but since it's not just a plain file, it's expected that you would need to use custom code rather than relying directly on text-buffer.

I might not have explained things super well but if you want to talk more about your code the best place to go for help is the Atom Slack or the official message board. We'll close for now since it's not clear that this is a problem with text-buffer but can always reopen or create a new issue if there's a confirmed problem.

from text-buffer.

ludwigkraatz avatar ludwigkraatz commented on August 25, 2024

from text-buffer.

lee-dohm avatar lee-dohm commented on August 25, 2024

There are two scenarios that atom.workspace.open is currently designed to handle:

  1. atom.workspace.open('filename.txt') -- Open a file that exists on disk, which instantiates a TextEditor object backed by a TextBuffer
  2. atom.workspace.open('scheme://some-path') -- Find the opener that matches and was previously registered via addOpener, which instantiates its own view and model (for an example, see the implementation in markdown-preview)

It sounds like what you're describing is a hybrid of the two, where you want to open something that doesn't exist on disk but you want the standard TextEditor/TextBuffer objects to handle everything other than the data layer. If you want something like that to happen, then you'll have to register an opener and create the TextEditor, TextBuffer (backed by the custom File object), and whatever else you need by hand.

I hope that helps and let me know if I misunderstood anything.

from text-buffer.

ludwigkraatz avatar ludwigkraatz commented on August 25, 2024

from text-buffer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.