Has anyone tried to implement the equivalent of a full featured editor for Brainfuck? What's the closest that is available?
Asked
Active
Viewed 820 times
2
-
3What features would such an editor include? Source code highlighting (trivial to write a regex for)? Code folding (because that makes glossing over the general structure so much easier)? Perhaps even in-depth static analysis? ;) – Jan 23 '11 at 22:08
-
Autocomplete? Search-and-replace? Refactoring tools? I originally thought of this question as a fun thought exercise, but it seems like a worthwhile one to answer – blueberryfields Jan 23 '11 at 22:12
3 Answers
3
In 2008 I implemented a editor/debugger/interpreter for Brainfuck in JavaScript.
It's browser based, so you don't have to install anything.
You can put breakpoints and run brainfuck step by step.
There are also several examples included.

Lordalcol
- 990
- 7
- 22