Re: Adding #+name to result block in babel

2022-11-28 Thread Bill Burdick
Hi Henrik, On Tue, Nov 29, 2022 at 2:11 AM Henrik Frisk wrote: > Hi, > > Maybe I'm missing something obvious but is it possible to have a name be > added to the result block such as running: > > #+begin_src shell > echo "Hello" > #+end_src > > results in > > #+RESULTS: > #+name: my_result > :

Re: Document management system with Org?

2022-11-07 Thread Bill Burdick
I use orgroam for this sort of thing: https://www.orgroam.com/ In fact, I manage most of my org files with orgroam. -- Bill On Mon, Nov 7, 2022 at 9:52 PM Max Brieiev wrote: > Org newbie here. > > Org advertizes itself as a note management and organizer system. > > How suitable is it to

Re: [PERFORMANCE] Why some org code is so deep invoked?

2022-08-12 Thread Bill Burdick
You'll have this with recursive code and recursion is fairly normal in Lisp programs. -- Bill On Fri, Aug 12, 2022 at 8:22 AM Christopher M. Miles wrote: > > Ihor Radchenko writes: > > > "Christopher M. Miles" writes: > > > >> When I profiling Org Agenda generation, I found that org code

Re: :session for Julia in org babel?

2022-08-09 Thread Bill Burdick
OK, I was just about to hit "Send". My backtrace is the same. -- Bill On Tue, Aug 9, 2022 at 8:53 AM Fraga, Eric wrote: > Hi Ihor, > > On Tuesday, 9 Aug 2022 at 20:39, Ihor Radchenko wrote: > > Can you please run M-x toggle-debug-on-error and share the full > > backtrace? > > See below.

Re: :session for Julia in org babel?

2022-08-08 Thread Bill Burdick
egexp-alist . ess-julia-error-regexp-alist) ...) -- Bill On Mon, Aug 8, 2022 at 12:28 PM Fraga, Eric wrote: > Hi Bill, > > thank you for the quick response. > > On Monday, 8 Aug 2022 at 11:49, Bill Burdick wrote: > > Julia works in org without sessions for me

Integrating org-roam with logseq (works on phones)

2022-08-08 Thread Bill Burdick
Hi folks, In case you care about this sort of thing and you didn't see my reddit post, I read an article at https://coredumped.dev/ about integrating org-roam with logseq and wrote some code to help with that (which I shared) so now I'm able to access my org-roam files on my phone (using

Re: :session for Julia in org babel?

2022-08-08 Thread Bill Burdick
Julia works in org without sessions for me but with sessions I get this error: org-babel-execute:julia: Cannot open load file: No such file or directory, ess -- Bill On Mon, Aug 8, 2022 at 11:22 AM Fraga, Eric wrote: > Hello all, > > has anybody tried using sessions for Julia in org? > >

Re: Org and Hyperbole

2022-06-23 Thread Bill Burdick
Note that recalc relies on lexical binding so if you use it, whatever file it's in needs ;; -*- lexical-binding: t -*- at the top. -- Bill

Re: Org and Hyperbole

2022-06-23 Thread Bill Burdick
In case anyone's interested in writing hyperbole commands that can act on regions but be located in other windows... To write a hyperbole command that restores the previous window and selection, just call bill/hyp-load-state at the start of your code and call bill/hyp-restore at the end (see

Re: Org and Hyperbole

2022-06-22 Thread Bill Burdick
-- this is the sort of thing Ober did and Hyperbole looks like a framework that makes it not too hard to do that for Emacs. -- Bill On Wed, Jun 22, 2022 at 10:26 PM Bill Burdick wrote: > No idea. > > > -- Bill > > > On Wed, Jun 22, 2022 at 10:23 PM David Mast

Re: Org and Hyperbole

2022-06-22 Thread Bill Burdick
this: (setq bill/calc-point (make-marker)) Since it's normally nil, the advice normally just ignores it. -- Bill On Wed, Jun 22, 2022 at 9:05 PM David Masterson wrote: > Bill Burdick writes: > > > Anywhere you use a link or button, you can probably use an emacs > > comman

Re: Org and Hyperbole

2022-06-22 Thread Bill Burdick
No idea. -- Bill On Wed, Jun 22, 2022 at 10:23 PM David Masterson wrote: > Bill Burdick writes: > > > Here's a hyperbole-org integration that lets you use org-mode tables > > outside of org-mode files. Shift-middle-click a "recalc" button and it > > will

Re: Org and Hyperbole

2022-06-22 Thread Bill Burdick
Anywhere you use a link or button, you can probably use an emacs command instead. I think maybe the value of links and buttons is that they're explicit. It's a reminder in the text and you don't have to learn it. One thing I noticed in my little "recalc" exercise is that Hyperbole really really

Re: Org and Hyperbole

2022-06-22 Thread Bill Burdick
Here's a hyperbole-org integration that lets you use org-mode tables outside of org-mode files. Shift-middle-click a "recalc" button and it will recalculate the table right under it (this idea is from an old version of the Oberon environment I wrote in Java, by the way). Here's the code: (defun

Re: Org and Hyperbole

2022-06-20 Thread Bill Burdick
I hadn't heard of it so I'm watching a demo. It looks similar to Oberon (which heavily influenced Acme and Wily) which is an extremely powerful "mouse-based text environment". I'm certainly going to give it a try -- it seems like a great compliment to org-mode and other Emacs power tools... --

Re: toggle-truncate-lines outside table and source regions

2021-09-23 Thread Bill Burdick
Gah, sorry about that -- I didn't read your message carefully enough! -- Bill On Thu, Sep 23, 2021 at 4:56 AM Luca Ferrari wrote: > On Wed, Sep 22, 2021 at 3:49 PM Bill Burdick > wrote: > > > > How about adding > > > > (lambda () (toggle-truncate-lines 1)) >

Re: toggle-truncate-lines outside table and source regions

2021-09-22 Thread Bill Burdick
How about adding (lambda () (toggle-truncate-lines 1)) to org-mode-hooks in your EMACS init file? -- Bill On Wed, Sep 22, 2021 at 2:59 AM Luca Ferrari wrote: > Hi all, > is it possible to instrument org-mode to automatically truncate lines > only on "regular" text, i.e., outside table and

Re: TMIO Pre-release, request for feedback

2021-06-12 Thread Bill Burdick
Just saw this -- this is a great service to the community, thanks for doing it! -- Bill On Sun, May 30, 2021 at 12:36 PM Timothy wrote: > Hi Everyone, > > As we arrive at the end of May, I'm about to publish the 3rd issue of > /This Month in Org/. I thought I'd share the current draft with

Re: Using backticks for the inline code delimeter?

2021-04-04 Thread Bill Burdick
On Sun, Apr 4, 2021 at 7:21 AM Nicolas Goaziou wrote: > Anyway, one of the goals of Org is to provide a universal document > format. It is not there yet, but allowing local modifications of the > syntax certainly goes against that goal. > Allowing local modifications lets people experiment and

Re: Using backticks for the inline code delimeter?

2021-03-31 Thread Bill Burdick
Grepping for src_ in *.el in the org distro shows 11 hits over 3 files: ob-core.el, ob-exp.el, and org-element.el. That's where you can start working if you want to copy those functions into your init files and modify them for yourself, or you can see if maybe using function advice is sufficient.

[New Package] org-fts: full text search of your org-mode files with ivy integration

2020-12-28 Thread Bill Burdick
Just posted this to Reddit: https://www.reddit.com/r/orgmode/comments/klyzjv/new_package_orgfts_full_text_search_of_your/ -- Bill

Re: Emacs as an Org LSP server

2020-12-15 Thread Bill Burdick
On Mon, Dec 14, 2020 at 7:35 PM Gerry Agbobada wrote: > Furthermore, I find that spending so much time and energy to prevent > people from spending their time on what they think is right, is pretty > harmful. > This is really key. Timothy, please keep up the good work and pay no attention to

Re: Emacs as an Org LSP server

2020-12-13 Thread Bill Burdick
Excellent idea! I frequently use Eclipse and, although I do always have an Emacs open, the idea of seamlessly using org-mode inside Eclipse is very attractive... -- Bill On Sun, Dec 13, 2020 at 12:44 PM TEC wrote: > > A little progress update. > > https://github.com/tecosaur/org-lsp now

Re: Changed list indentation behavior: how to revert?

2020-11-16 Thread Bill Burdick
Heh, I had time to read EMACS NEWS when I used it in 1985 (and still do for new EMACS versions). Now there are s many packages, each with their own news... -- Bill On Mon, Nov 16, 2020 at 10:59 PM Tim Cross wrote: > > Tom Gillespie writes: > > > Would it help if major releases

Re: Changed list indentation behavior: how to revert?

2020-11-16 Thread Bill Burdick
Ugh, I update my emacs package pretty infrequently and I usually have 30 or more packages updating at a time -- I can't see wading through 30 NEWS files searching for landmines... -- Bill On Mon, Nov 16, 2020 at 9:10 PM Tom Gillespie wrote: > Semver is unlikely to help because the question

Re: Changed list indentation behavior: how to revert?

2020-11-16 Thread Bill Burdick
On Mon, Nov 16, 2020 at 8:43 AM Tim Cross wrote: > So essentially, this change has been made to make org-mode consistent > with the rest of emacs which enabled electric-indent by default in Emacs > 24. this is a good thing. Org should be consistent with other modes. Any > differences are likely

Re: [O] Emacs+org on Windows 7 pro

2016-08-23 Thread Bill Burdick
I switched from Cygwin to Msys2 a year or two ago and it's been very good. The pacman-based package management is very good. The only thing to watch out for is that there are actually 2 gcc suites and if you want to build automake projects (like many open source projects), you'll want to be using

Re: [O] Bug: Exception when trying to export inlined-code [8.3.4 (8.3.4-9-gfda14f-elpa @ ~/.emacs.d/elpa/org-20160307/)]

2016-03-09 Thread Bill Burdick
(Hi Shlomi!) When I export this to html, I get what looks to be the same error. Here's some info that may help track this down. My org-version line: Org-mode version 8.3.4 (8.3.4-9-gfda14f-elpaplus @ c:/Users/bill/.emacs.d/elpa/org-plus-contrib-20160307/) The error I get:

[O] Integrating Skewer with org-babel-js

2016-02-12 Thread Bill Burdick
, so here it is: https://gist.github.com/zot/0dd34b50acf81416dd88 -- Bill Burdick

Re: [O] How to make weeks start from Sunday and be numbered from a custom date

2015-08-23 Thread Bill Burdick
Have you tried customizing org-agenda-format-date with a function? Here's the doc string: Format string for displaying dates in the agenda. Used by the daily/weekly agenda and by the timeline. This should be a format string understood by `format-time-string', or a function returning the

Re: [O] Help testing orgmode connection to interactive web environment

2015-08-23 Thread Bill Burdick
, etc., as we get the connectors implemented. -- Bill On Sat, Aug 22, 2015 at 4:42 PM, Bill Burdick bill.burd...@gmail.com wrote: Sorry -- I should have mentioned that it only supports Chromium/Chrome at the moment! On Sat, Aug 22, 2015 at 11:04 PM David A. Gershman gersh...@dagertech.net

Re: [O] Collaborative Team Project Management with Orgmode?

2015-08-23 Thread Bill Burdick
Heh, well I did add a todo item to the project when I saw this thread, but Leisure doesn't yet handle agenda items. This is the type of feedback I'm looking for though. I'm also wondering if there are any orgmode hackers out there with some JS/HTML skillz who might like to help out with modding

[O] Help testing orgmode connection to interactive web environment

2015-08-22 Thread Bill Burdick
-- Bill Burdick

Re: [O] Help testing orgmode connection to interactive web environment

2015-08-22 Thread Bill Burdick
), and still just got a blue screen with the title Loading Leisure..nothing else happened. I'm running Debian Jessie w/Iceweasel 38.2.0 (repository supplied). On 08/22/2015 07:49 AM, Bill Burdick wrote: Hi there! I'm working on an open-source web-based platform for interactive