A text editor is a type of program used for editing plain text files.
11
votes
2answers
217 views
A Binary Editor with Live Text Preview
This is a tool I needed for some other things (it's incomplete, but almost done) which is essentially just a text-editor that has two text-boxes: the left being the binary view / raw bytes, the right ...
1
vote
1answer
59 views
Simple Brainf_ck IDE in JavaFX 8
I have this simple IDE for playing with Brainf_ck. It has no file functionality; only the code, input and output fields are present, and the "compiler" is integrated. Here is how it looks like:
My ...
3
votes
0answers
28 views
Replace text in emacs buffer with processed one
I have function that processes text and returns it in altered state. Result of the processing is a property list with following properties of interest:
:success - ...
6
votes
1answer
47 views
Cleaning up Erlang code for a text editor
On Monday and Tuesday I started learning Erlang through the Erlang Koans, and around Wednesday night I decided to use my newfound knowledge to implement a simple text editor (Akin to ed(1)). Currently ...
3
votes
1answer
134 views
Online notepad in JavaScript
I have been told for my code below i need to "Improve and optimise the codebase of the application to reflect modern and best coding practices". Can anyone help me in doing this? As I know the service ...
3
votes
1answer
218 views
Integrating the Ace embeddable code editor for editing HTML, CSS, and JavaScript
I am currently implementing the Ace-editor embeddable code editor. In to my application.
I use a div with a certain class(example: editor_js) to render the editor the div also gets a data attribute (...
1
vote
0answers
162 views
TinyMCE plugin to save with cancel button
Please provide constructive criticism for this TinyMCE plugin which allows the user to save the content, or cancel and go back to the original.
JS Bin
...
1
vote
2answers
98 views
Java Swing Text Editor
Creating my first program in Swing and I was hoping to get some feedback. I'm looking for constructive criticism and tips for my swing code and my code in general. Don't really know what I'm doing so ...
10
votes
1answer
856 views
Beginner text editor
I wrote a simple text editor and I would like to get some critical comments. Below I present only a main part of code. I removed icons, irrelevant functions, etc. I am aware,that JTextArea is not best ...
7
votes
2answers
15k views
Simple text editor class
I have recently undertaken a project for programming practice based on a simple text editor. Normally this kind of thing wouldn't bother me, but ever since I completed a software architectures module ...
4
votes
1answer
3k views
Custom WYSIWYG Editor
I am so sick of WYSIWYG editors being exclusively for the latest browser or being huge with every option under the sun. I tried to make my own, using code I found online as well as a little of my own ...