A text editor is a type of program used for editing plain text files.
3
votes
0answers
22 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 - ...
5
votes
1answer
28 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 ...
2
votes
1answer
82 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
92 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
28 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
71 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
707 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
12k 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 ...