pglpm, to orgmode
@pglpm@emacs.ch avatar

Dear community:

I've started taking advantage of Emac's org-mode with R code snippets. So nifty!

One thing I miss from ESS-mode is the underscore key "_" that produces the assignment operator "<-". Do you know any way of having this functionality within R code blocks in an org document?

A search on stackexchange and the web didn't return very much, or only answers from 10 years ago...

Cheers!

EDIT: I found this useful tip in an old org-mailing-list thread: https://list.orgmode.org/4CC40000.3090508@uni-koeln.de/T/#efb9759d0d3a8ab22e391a385608c046a13e90502

>>> or some keybindings (e.g. for "<-") inside<br></br>>>> an R source code block.<br></br><br></br>This one can be done with<br></br><br></br>  (defun dan/org-underscore-command ()<br></br>    (interactive)<br></br>    (or (org-babel-do-key-sequence-in-edit-buffer "_")<br></br>        (org-self-insert-command 1)))<br></br><br></br>   (define-key org-mode-map "_" 'dan/org-underscore-command)<br></br><br></br>And another one that you may like is for commenting code:<br></br><br></br>  (defun dan/org-comment-dwim (&optional arg)<br></br>    (interactive "P")<br></br>    (or (org-babel-do-key-sequence-in-edit-buffer "M-;")<br></br>        (comment-dwim arg)))<br></br><br></br>   (define-key org-mode-map "M-;" 'dan/org-comment-dwim)<br></br><br></br>
jtr, to emacs
@jtr@fosstodon.org avatar

When I stopped my weekly routine, I also stopped organizing tasks. Now I have one big file mixed with personal and work tasks, some active and some complete. It’s an intimidating blob of “stuff,” and just looking at it makes me want to run away to a video game instead.

When should I visit my projects file and move things out into their categories? Second, what are these categories?

Rethinking and reorganizing my life - with org-mode:

https://taonaw.com/2024/06/04/rethinking-and-reorganizing.html

joel,
@joel@fosstodon.org avatar

@jtr yes this is good, as long as your titles aren't just http links I'm happy

jtr,
@jtr@fosstodon.org avatar

@joel making you happy is one of my goals ☺️. But also seriously, this is good feedback. It requires a bit more work on my end (manual vs automatic) but I think I can automate some parts of it.

petrillic, to orgmode
@petrillic@hachyderm.io avatar

I’d be curious of tips from anyone on how they use #orgmode to manage notes when there’s lots of media like images.

xuxxux,

@nickanderson @joshourisman @petrillic @greg any hints on how to ease my pain much appreciated. Ideally org would look into the attach for each parent until it finds the attachment

greg,
@greg@gregnewman.io avatar

@xuxxux @nickanderson @joshourisman @petrillic I honestly don’t do much with images in my notes but in the past I did have success with org-download. I’m not sure if it’s still active. Adding some tags for further reach.

https://github.com/abo-abo/org-download

AAMfP, to emacs
@AAMfP@fosstodon.org avatar

The more I learn , the more I think I should've started way earlier.
I'm using only , to create and manage my digital garden, but I've already learnt a good set of useful commands, my digital garden is automagically converted from Org Mode into HTML with a nice CSS, I've even integrated Japanese furigana and PlantUML!
And I'm sharing back all my current learnings, using the digital garden itself: https://marcoxbresciani.codeberg.page/emacs/orgmode/orgmode.html
Have a nice reading, and give me feedbacks! 🙏🏻

blaise,
@blaise@fosstodon.org avatar

@AAMfP
I wish I had stayed with emacs, but life was simple then and it was not readily available on some of my platforms (1988).

Now, I would encourage a young person to use emacs and cultivate it for life because content and workflows will still be available to them forever.
My word perfect and Ms word skills have been obsolete for decades.

AAMfP,
@AAMfP@fosstodon.org avatar

Oh my gosh, my page above is the second one ending up into @sachac Emacs News! 😱
Thank you Sacha! 🙏🏻

spelk, to emacs
@spelk@emacs.ch avatar

highlighted @jbaty blog post on the "gravitational pull of emacs" a cyclic moving away for simplicity's sake and a gradual pull back as personal comforts of customisations coax and inevitable return to

Emacs as Crack
https://irreal.org/blog/?p=12216

The gravitational pull of Emacs
https://baty.net/2024/06/the-gravitational-pull-of-emacs/

I've noticed a similar tidal motion back and forth, but instead of simple note-taking apps I flow between Emacs and other simpler editors, like or

Ultimately the draw & utility of sucks me back into Emacs and has me nuzzling comfortably back in my custom config.

This is probably a result of trying to walk the tight rope of balance between literally "getting things done" (not the GTD system) and "making life easier" with settings & customising.

I suppose, one day, the customisations might reach a stable state & the use of other editors becomes unnecessary. Balance achieved. Enlightenment.

But you know, in tech, everything moves on eternally so the balance undulates softly over time. Not to mention our lives and needs also shift over time.

So perhaps this do-si-do dance we do, will always be?

publicvoit, to orgmode
@publicvoit@graz.social avatar

Sharing Selected #Orgmode Data With #Logseq Users
https://karl-voit.at/2024/06/02/org-headings-to-logseq/

I do have a special use-case for sharing parts of my Org-mode content with my wife.

(Help me to promote me #Emacs content elsewhere since I no longer promote it outside of Mastodon: https://karl-voit.at/2024/05/23/leaving-reddit/ )

#publicvoit #PIM #Elisp

publicvoit,
@publicvoit@graz.social avatar

@AAMfP Furthermore, I'd not say that Markdown definitions are bloated in contrast to Orgdown. Quite the contrary since in the basic Markdown definitions, there are no tables, blocks, properties and many many more syntax elements orgdown knows.

AAMfP,
@AAMfP@fosstodon.org avatar

@publicvoit
Nice point.
Indeed I'm actually using Org Mode Markup Syntax also through app (from F-Droid) instead of phone calendar, agenda and notes, but also when writing text emails, text messages and even on Slack, WhatsApp and other similar tools, even if they are not (so) compatible with it.
Maybe your idea is not popular but I'm sure that people using Org Mode Markup Syntax are using it everywhere. 😉

shom, to emacs
@shom@fosstodon.org avatar

Org Release 9.7 brings many new features, I'm excited about:

  • Images and files in clipboard can be pasted
  • New customization org-image-max-width
  • Asynchronous code evaluatation in ob-shell
  • org-auto-align-tags is now respected universally

@daviwil might like this for literate config

  • ob-tangle.el: New flag to remove tangle targets before writing

Many more at: https://orgmode.org/Changes.html

mykhaylo,
@mykhaylo@fosstodon.org avatar

@shom @daviwil did you find out how to specify folder for yanked media? Can’t seem to find it.

yantar92, to announcement
@yantar92@emacs.ch avatar

Org 9.7, a major release, is out.

Org 9.7 will be a part of Emacs 30.

You can upgrade from GNU ELPA or install with M-x package-install RET org RET

Please, also re-install all the Org-related packages - some of the
changes require re-compiling packages that use Org mode APIs.

Release notes: https://orgmode.org/Changes.html

Announcement: https://list.orgmode.org/87jzj7adfd.fsf@localhost/T/#u

If you enjoy using Org, please consider supporting contributors via
<https://liberapay.com/org-mode/>. Donations do help a lot.

screwtape, to fediverse
@screwtape@mastodon.sdf.org avatar

Breaking up my failures-to-build with my discovery of using

I really like this eight minute if I do say so myself.

https://toobnix.org/w/2WYHBTHGvRQ8pUSVmKhKGg

@adanskana @sachac @louis
can I ask for some opinions on the clim / emacs / lisp useage as conveyed by videos?

This is pretty much just what I really do when near a computer for eight minutes.
Playlist:
https://toobnix.org/w/p/4bRcULzg6bBAyELkRqU6EQ?playlistPosition=1

laotang, to emacs
@laotang@emacs.ch avatar

people: Is there an easy way to customise org-capture (and perhaps org-agenda) to just use the same window and leave my window management alone?

I’m knee-deep into stack overflow posts and wasting way too much time here. This is one of my most longstanding annoyances of

(This is actually one of the reasons does not use org-capture for new notes.)

mykhaylo,
@mykhaylo@fosstodon.org avatar

@laotang I went down the rabbit hole with that video and ended up creating my own mode line 🙈

mykhaylo,
@mykhaylo@fosstodon.org avatar

@laotang org 9.7 has this in release notes:

howard, to orgmode
@howard@emacs.ch avatar

Excellent ideas in customizing the #orgmode agenda in #emacs. I believe I need to revisit how I've been organizing my day-to-day workflow.

https://macowners.club/posts/personal-touch-org-agenda/

ctietze,
@ctietze@mastodon.social avatar

@howard Same. Saw this today, too. I wonder if I could fit my agenda into a side bar as well 🤔

bram85, to orgmode
@bram85@emacs.ch avatar

I wrote a small post on using the rx macro in places where it's not supported, e.g. in Lisp data files.

rx is a macro which takes a special Lisp form and complies it to a regular expressions string.

The post demonstrates how I use with noweb expansion to insert rx results in a source file. In this case, I use it to write scoring rules for elfeed-score with more readable regular expressions.

https://apps.bram85.nl/git/bram/gists/src/commit/17c1255461b66392579dd7f4b7391c560bdff919/gists/rx-in-lisp-data.org

al3x, to emacs
@al3x@hachyderm.io avatar
bmp, to emacs
@bmp@mastodon.sdf.org avatar

This #emacs package https://github.com/positron-solutions/dslide for making presentations with an #orgmode document. You can also check the video demon https://yt.artemislena.eu/watch?v=AE82bIKNVjk (don't worry this is just Invidious front-end for Youtube and not a nefarious link). #presentation

debacle,
@debacle@framapiaf.org avatar

@bmp

Wow, looks more powerful than org‑present or org‑tree‑slide!

"This is the world’s greatest software" — well, not sure yet, but maybe it is.

holgerschurig,

@debacle @bmp The other day I tried org-reveal.

But I had lots of trouble getting paragraphs left justed (IMHO something that should be default). And even two item lists below each other had different rendering.

In the end I stopped fighting it and just used ... cough ... LibreOffice Impress.

So thanks for pointing me to another presentation software, I'll try it out. I like to have all docs, even presentations, in the Git tree next to the sources. Not in some binary files somewhere else.

ankit, to orgmode
@ankit@emacs.ch avatar

I'm building an #orgmode parser that currently only parses Headings and Scheduled timestamps.

I plan to then use it in a daemon that can watch my Org files and notifies me when its time to do the task.

ankit,
@ankit@emacs.ch avatar

@publicvoit I don't know what is orgdown. I'll check it out. Thanks!

publicvoit,
@publicvoit@graz.social avatar

@ankit OD ist the syntax of orgmode.

https://gitlab.com/publicvoit/orgdown

  • All
  • Subscribed
  • Moderated
  • Favorites
  • megavids
  • thenastyranch
  • rosin
  • GTA5RPClips
  • osvaldo12
  • love
  • Youngstown
  • slotface
  • khanakhh
  • everett
  • kavyap
  • mdbf
  • DreamBathrooms
  • ngwrru68w68
  • provamag3
  • magazineikmin
  • InstantRegret
  • normalnudes
  • tacticalgear
  • cubers
  • ethstaker
  • modclub
  • cisconetworking
  • Durango
  • anitta
  • Leos
  • tester
  • JUstTest
  • All magazines