-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Looking for some Forth IDE #78
Comments
I'm not aware of anything like that.
I use emacs with the Forth mode, which does syntax highlighting.
I use a Forth which has word completion, stack display, tracer and
debugger.
When I use word completion on my own words, I take that as a sign that
I should have made a shorter word.
…--
James Cameron
http://quozl.netrek.org/
|
@quozl Thanks for the comment. I did not know that the gnu emacs forth mode we implemented back in 88 was still used :) I will let Göran Rydqvist know when I meet him. He wrote most of the original code. |
Manfred Mahlows 4ethcom might qualify as a simple IDE for Forth https://wiki.forth-ev.de/doku.php/en:projects:e4thcom I personally use Emacs with one of the Forth-Modes |
Thx for your answers ! I've found this one http://www.holonforth.com/using.html which looks nice |
A major reason that I love Forth is because it is like an IDE that is lightweight enough to run on the target. That's why most of my Forth work has centered around systems where the text interpreter is present on the target, including a resident debugger and full introspection. It's interesting that such a target-resident "Forth IDE" can fit easily on a $2 microcontroller these days, compared to modern IDEs for, e.g. C, which require you to download and install a gigabyte of stuff. The productivities are similar. |
On Wed, Jan 9, 2019 at 10:36 AM Mitch Bradley ***@***.***> wrote:
A major reason that I love Forth is because .. <snip> .. [t]he
productivities are similar.
"The road not taken"
…--
Jack Woehr
Absolute Performance, Inc.
12303 Airport Way, Suite 100
Broomfield, CO 80021
NON-DISCLOSURE NOTICE: This communication including any and all
attachments is for the intended recipient(s) only and may contain
confidential and privileged information. If you are not the intended
recipient of this communication, any disclosure, copying further
distribution or use of this communication is prohibited. If you received
this communication in error, please contact the sender and delete/destroy
all copies of this communication immediately.
|
Hi Jack. |
On Wed, Jan 9, 2019 at 2:07 PM Mitch Bradley ***@***.***> wrote:
Hi Jack.
Hi Mitch .. still in Hawai'i?
--
Jack Woehr
Absolute Performance, Inc.
12303 Airport Way, Suite 100
Broomfield, CO 80021
NON-DISCLOSURE NOTICE: This communication including any and all
attachments is for the intended recipient(s) only and may contain
confidential and privileged information. If you are not the intended
recipient of this communication, any disclosure, copying further
distribution or use of this communication is prohibited. If you received
this communication in error, please contact the sender and delete/destroy
all copies of this communication immediately.
|
Hi some times ago, I wrote a personal basic IDE in GTK+ for editing Forth scripts. It's doing some basic stuffs like word completion, color highlighting (like immediate, unknown words), dictionary display, stack display, soon I hope to add a tracer and a debugger. I was wondering if it exists Forth IDE that can be installed for Linux that I could pick some inspirations. A quick search Google I found nothing more gui-friendly than a vim-like text editor.
Thx !
The text was updated successfully, but these errors were encountered: