this post was submitted on 18 Nov 2023
1 points (100.0% liked)

Emacs

310 readers
1 users here now

A community for the timeless and infinitely powerful editor. Want to see what Emacs is capable of?!

Get Emacs

Rules

  1. Posts should be emacs related
  2. Be kind please
  3. Yes, we already know: Google results for "emacs" and "vi" link to each other. We good.

Emacs Resources

Emacs Tutorials

Useful Emacs configuration files and distributions

Quick pain-saver tip

founded 1 year ago
MODERATORS
 

I would like to share with you a new Emacs package called project-tasks that I had been working on. With project-tasks, you can effortlessly manage tasks within your project using the power of org-babel.

You can take a look here https://github.com/TxGVNN/project-tasks

I developed and use it a long time, and it helps me a lot of to manage tasks I need to run on a project.

Example: tasks.org

#+name: docker-compose up
#+begin_src compile :name "docker-compose-up" :results none
docker-compose up -d
#+end_src

You can see more examples in tasks.org on repository.

top 4 comments
sorted by: hot top controversial new old
[–] camber-weaver@alien.top 1 points 10 months ago (1 children)

This is pretty interesting...

It appear as though your workflow is pretty similar to mine when producing technical documentation. I need to dig into this a bit. Hope you don't mind me asking a question after only having done a quick fly-by...

What is the ob type 'compile'? I've never seen that one. Something you've created or something that has just been under my radar?

[–] txgvnn@alien.top 1 points 10 months ago

Thanks.

What is the ob type 'compile'?

It's another package that I created it long time. You can install it in MELPA ob-compile. Run compile by org-babel.

I use ob-compile very much in my workflow.

[–] vfclists@alien.top 1 points 10 months ago (1 children)

Please use the four spaces indentation method of formatting code not the triple backtick.

It doesn't look right in the old reddit style format which is better for code.

where is /u/backtickbot when you need it?

[–] txgvnn@alien.top 1 points 10 months ago

Thank you. I've just known it. Updated!