omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    Feature: org-mode support

    Editorial
    26
    27
    43702
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • rayalez
      rayalez last edited by

      You know what would be awesome? If besides the taskpaper you would support the Emacs org-mode files.

      It would be incredibly useful for everything I do, task management, note taking, all kinds of ways to organize information.

      1 Reply Last reply Reply Quote 9
      • wkf
        wkf last edited by

        Totally agree with this, it would be great to have org-mode support in addition to taskpaper.

        Thanks for the useful software.

        1 Reply Last reply Reply Quote 2
        • ashmanskas
          ashmanskas last edited by

          Yes! This would be incredibly useful --- even if it were a limited read-only mode, and even if it initially supported only a subset of org-mode features.

          1 Reply Last reply Reply Quote 2
          • bpatzke
            bpatzke last edited by bpatzke

            I spend a lot of time in emacs and org-mode. I would be very very happy if Editorial supported org-mode.

            Supporting the full functionality of org isn't very feasible, but org-mode functionality similar to what is available in the markdown and taskpaper modes would be huge!

            And thanks for the amazing iOS tools. I use both Editorial and Pythonista, and I love them both.

            1 Reply Last reply Reply Quote 2
            • egor
              egor last edited by

              The org mode would be fantastic. Even editing 'org' files with folding on '*' headings would be huge help. To be specific 1) recognize '.org' extension 2). fold on '*', '**', '***'... etc, same way as in markdown 3) support tabs indentation as in markdown. The rest of the features can be added later, but this basic org-mode support will bring a number of fans.

              Thank you for a great editor! For now, I will just convert from org to md, and back.

              1 Reply Last reply Reply Quote 2
              • scotthewitt
                scotthewitt last edited by

                Org Mode support would be great and agree that only a limited feature set such as folding on * would make all the difference though I think it would be cool if :tags: were also recognised and perhaps highlighted by the editor as well.

                1 Reply Last reply Reply Quote 2
                • mudra
                  mudra last edited by

                  +1
                  Yes, please!

                  1 Reply Last reply Reply Quote 2
                  • Joan
                    Joan last edited by

                    I'd love to see org-mode support added.

                    1 Reply Last reply Reply Quote 2
                    • stophlong
                      stophlong last edited by stophlong

                      +1. Yes, please! This would be very useful to me and would likely make editorial the app of choice for much of the org-mode community (http://orgmode.org/). The whole org-mode manual is here: http://orgmode.org/manual/index.html

                      A. ** Simply adding folding based around "*" instead of markdown' "#" (as mentioned by egor) would actually be a HUGE step **(http://orgmode.org/manual/Global-and-local-cycling.html#Global-and-local-cycling).

                      EDIT: Folding on "*" does work, but it is different from the built in folding. It is more like hiding than folding. That is, the lines disappear, but are not bound to the previous line. So, if one tries to arrange paragraphs there are two lines to move. In contrast, with the built in folding the folded line and previous line are bound together. I would vote for an option for folded text to be bound to previous line.

                      EDIT #2: Somewhat better folding with * can be achieved using a python script to do it. But it's still less graceful than the built in folding with #.

                      B. There are a lot of similarities between org-mode and markdown and taskpaper. Some of org-mode is similar to MultiMarkdown (e.g., tables). So you've probably already implemented a lot of the functionality, it's just different grammar.

                      org-mode uses square brackets slightly differently from markdown. Namely, it uses [#A] and [#B] etc to label priority levels. It uses [[filename]] to link to files. http links are auto-detected.

                      C. The community could then write a number of workflows to get things done.

                      D. After folding, color coding of "TODO" (red) versus "DONE" (green) would be high on my list. Users can specify what keywords are available such as "TODO" , "DONE", "WAITING", "STARTED"
                      http://orgmode.org/manual/TODO-items.html#TODO-items

                      E. Next I think people would want access to checkboxes, although I'm not big on using those.
                      http://orgmode.org/manual/Checkboxes.html#Checkboxes

                      Stoph

                      1 Reply Last reply Reply Quote 6
                      • stophlong
                        stophlong last edited by

                        I wrote some org (http://orgmode.org) related functions as a proof of concept. You can check out my screencast for more info (https://youtu.be/JclQcwc2iJs). They work well for my needs. Still, please back up your work before using as I make no guarantees. Perhaps they'll work for you or get the ball rolling. I'm sure there are better programmers out there who can bring this to the next level. The functions are:

                        ** Set status to TODO
                        http://www.editorial-workflows.com/workflow/5868157243752448/iHmicbjCGnQ
                        ** Set priority to A to E or none
                        http://www.editorial-workflows.com/workflow/5867376096575488/XFtytC5Exlc
                        ** Set status to DONE
                        http://www.editorial-workflows.com/workflow/5801748996292608/_FdUYKZc8ok
                        ** Sort by status and priority
                        http://www.editorial-workflows.com/workflow/5812294751617024/gupP4BzwlAU
                        ** Set folding level
                        http://www.editorial-workflows.com/workflow/5903220819886080/TWOVI5goxlQ

                        ** They require 2 helper functions
                        *** regexpcore1
                        http://www.editorial-workflows.com/workflow/5843896315674624/uHU7TbwvYpQ
                        *** tagline1
                        http://www.editorial-workflows.com/workflow/5842528100155392/M7MkV9-ttEA
                        *** Select line is also pretty handy:
                        http://www.editorial-workflows.com/workflow/5826771207323648/Ff1vStBebbE

                        I also wrote some functions to convert between org and markdown. One simply replaces each * with # (up to 3 deep). The other creates a hybrid format with * becoming #*, ** to ##**, etc. All my functions work with md, org, and hybrid styles for the moment.

                        ** Org to md:
                        http://www.editorial-workflows.com/workflow/5340270866464768/kF8RXChZOD4
                        ** Md to org:
                        http://www.editorial-workflows.com/workflow/5878952644050944/NGqQ3s08GTs
                        ** Org to md-hybrid * to #*
                        http://www.editorial-workflows.com/workflow/5840025744834560/ngt2H9QcOo8
                        ** Md-Hybrid to org #* to *
                        http://www.editorial-workflows.com/workflow/5839157624569856/7pzDbe4W2Zs

                        aharding3 1 Reply Last reply Reply Quote 5
                        • cwittern
                          cwittern last edited by

                          Indeed, better org-mode on Editorial would be great. I am definitely in favor of this!

                          1 Reply Last reply Reply Quote 3
                          • aharding3
                            aharding3 @stophlong last edited by

                            Another big yes to org-mode support being added. I use org-mode for tasks, note taking, outlining etc. To be able to access and edit my .org files on the iPad (even at a minimal level) would be fantastic.

                            1 Reply Last reply Reply Quote 3
                            • sjuswede
                              sjuswede last edited by

                              I agree fully on this. Just the ability to properly fold org files would be amazing, and make Editorial the go-to iPad editor for org files immediately.

                              Other features such as TODO handling and understanding org file header would be an excellent addition to this, but proper folding, and promotion/demotion using TAB would be an excellent base.

                              I use org mode for a lot of my writing. Being able to do it painlessly on the iPad would be fantastic.

                              1 Reply Last reply Reply Quote 4
                              • elsatch
                                elsatch last edited by

                                Hi,

                                I've been using org-mode for years and I'd really love to see it implemented into Editorial. It could be similar to TaskPaper mode folding around different character set.

                                Big plus 1 to see it in the future!

                                1 Reply Last reply Reply Quote 3
                                • MD
                                  MD last edited by MD

                                  Huge +1!

                                  Do as a in-app purchase add-on if needed. I will personally pay $50 for this feature (I signed up for these forums just to request this).

                                  1 Reply Last reply Reply Quote 3
                                  • erikcw
                                    erikcw last edited by

                                    I would also love to see org-mode support added!

                                    1 Reply Last reply Reply Quote 3
                                    • malloryerik
                                      malloryerik last edited by

                                      I just registered now to say that I'd buy Editor, and make some others buy it, if it had even basic org-mode support.

                                      There are a lot of emacs users, and they all have mobile devices...

                                      Not having a mobile client is a serious pain point, and yet people still cling to, indeed switch to, org-mode.

                                      1 Reply Last reply Reply Quote 2
                                      • quiquekaik
                                        quiquekaik last edited by

                                        I'm an Editorial user and I also wanted to say that some basic kind of org-mode support would be HUGE!
                                        Lot's of org mode users out there and Editorial would be the only iOS app that would support it.

                                        Even if this is just for basic syntax highlighting and rendering and making outlines, it would be really useful.

                                        1 Reply Last reply Reply Quote 2
                                        • rcherny
                                          rcherny last edited by

                                          I haven't tried the actions noted above, and I'm a bit of an Editorial noob — but just wanted to note there's an org mode plugin for Sublime Text. Those are written with Python.

                                          Might be something in there to port (no idea as I'm not a Python, Org Mode, or Editorial "power user").

                                          1 Reply Last reply Reply Quote 2
                                          • alexbluk
                                            alexbluk last edited by

                                            Hi there,

                                            New user of Editorial and long time of org-mode. I registered here firstly to add my voice asking for this feature!

                                            1 Reply Last reply Reply Quote 2
                                            • First post
                                              Last post
                                            Powered by NodeBB Forums | Contributors