How to browse source #2421
-
|
After looking through the screenshot thread, I see that I can for example
|
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 2 replies
-
|
Beta Was this translation helpful? Give feedback.
-
|
@john-floren-gravwell using "See > Scrollable & Pretty" is not a bad way to look at the source. In practice, you'd LOAD the source and use There's typically a documentation file for each lispusers package -- file foo will have foo.tedit -- which is opened with TEDIT (the text editor), the easiest way to get TEDIT on a file you've got visible in the FileBrowser is to select it (left click) and then click "Edit" in the browser menu. I think we have all the TEdit files converted to PDFs, but I don't have the link to hand. |
Beta Was this translation helpful? Give feedback.
-
|
The "summary" column of this spreadsheet provides short descriptions of what most LispUsers modules do, including some with no documentation. The LispUsers TEdit files converted to PDF are available here https://files.interlisp.org/medley/lispusers/ It is part of this website https://files.interlisp.org/medley/ which provides a browsable version of the Medley source tree with TEdit files converted to PDF. |
Beta Was this translation helpful? Give feedback.
-
|
Scrollable and Pretty is now the default, you shouldn't have to go to the submenu. It brings up the file in a read-only Tedit window.
The difference between See and Edit, when you are looking at something that Tedit can display, is that See is Readonly and Edit would allow you to Edit. But it is a *very* bad idea to edit a lisp source file with a text editor.
The See command will also open a separate (non-Medley) window if applied to a pdf file.
… On Dec 23, 2025, at 1:22 PM, Nick Briggs ***@***.***> wrote:
@john-floren-gravwell <https://github.com/john-floren-gravwell> using "See > Scrollable & Pretty" is not a bad way to look at the source. In practice, you'd LOAD the source and use (DC filename) to get an SEdit (structure editor) on the "COMS" of the file, which are the commands executed by the file package to create the source file from what's in memory. From the SEdit on the file coms, you'd meta-O to get editors on the individual functions.
There's typically a documentation file for each lispusers package -- file foo will have foo.tedit -- which is opened with TEDIT (the text editor), the easiest way to get TEDIT on a file you've got visible in the FileBrowser is to select it (left click) and then click "Edit" in the browser menu.
I think we have all the TEdit files converted to PDFs, but I don't have the link to hand.
—
Reply to this email directly, view it on GitHub <#2421 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AQSTUJK46R6SWMCZKSOVNN34DGXCNAVCNFSM6AAAAACP4FTGROVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTKMZTGAYDKNA>.
You are receiving this because you are subscribed to this thread.
|
Beta Was this translation helpful? Give feedback.
-
|
You can also browse the Medley sources from the shell on Linux or other Unix derivatives. Navigate the source tree with |
Beta Was this translation helpful? Give feedback.
-
|
There is also a copy of all of the Interlisp source files (LISPSOURCEFILEP) and TEdit files available all converted to PDF under https://files.interlisp.org/medley/ For example: The idea was to make sources and documentation available to people who didn't want to run Medley. |
Beta Was this translation helpful? Give feedback.
@john-floren-gravwell using "See > Scrollable & Pretty" is not a bad way to look at the source. In practice, you'd LOAD the source and use
(DC filename)to get an SEdit (structure editor) on the "COMS" of the file, which are the commands executed by the file package to create the source file from what's in memory. From the SEdit on the file coms, you'd meta-O to get editors on the individual functions.There's typically a documentation file for each lispusers package -- file foo will have foo.tedit -- which is opened with TEDIT (the text editor), the easiest way to get TEDIT on a file you've got visible in the FileBrowser is to select it (left click) and then click "Edit" in the browser m…