Skip to main content

Questions tagged [editor]

-1 votes
1 answer
2k views

I hope this is the right forum for this question, but I'm just looking to understand how Google Docs and Sheets works. How can multiple users edit the same sheet and see live changes without having to ...
user2480201's user avatar
7 votes
1 answer
3k views

I'm creating a very small text editor in C++ with the ncurses library. So far, it works great. I have implemented the Gap Buffer data structure to make the editing more efficient than a line-based ...
vinnylinux's user avatar
1 vote
2 answers
3k views

Today I was presented with a very nasty problem and I do not quite know where to ask this but hope here is ok. So I have the following string: "\0" (at least that's how it looks in visual studio). If ...
Vincent's user avatar
  • 383
0 votes
1 answer
512 views

I'm building a user friendly XML editor in HTML/JS. Looking for some general advice on how to build the editor UI and which approach you'd recommend on mapping the data to the UI. Details about the ...
Drkawashima's user avatar
0 votes
3 answers
1k views

Background Looking to develop a WYSIWYG editor for ordered lists so that people can directly edit lists of instructions on a web page. Problem The contentEditable attribute is woefully immature for ...
Dave Jarvis's user avatar
162 votes
1 answer
202k views

I am wondering why there is no markdown syntax for underline? I know that basic html tags can be embedded to achieve this but I am trying to understand why underline got omitted when bold and italics ...
ganessh's user avatar
  • 1,739
1 vote
1 answer
5k views

I need to create a graphical editor for our data model that works in an HTML5 compliant browser. I am looking for a proper library/framework to build on. The model is stored as xml, but that should be ...
Andrew Eisenberg's user avatar
10 votes
1 answer
11k views

I want to know what purpose does console solve in sublime text 2. This is invoked by pressing Ctrl+Shift+` Is this a kind of debugger, or It just helps you to install packages.
Mike's user avatar
  • 559
7 votes
4 answers
695 views

I know this is kind of a subjective question, but I'm curious if there's any good reason to place (or not place) editor settings inside code files. I'm thinking in vi modelines, but it is possible ...
Carlos Campderrós's user avatar
7 votes
7 answers
485 views

My current application is running into issues with its ORM, and we're relying on some pretty hairy SQL to express queries that the ORM can't. Are there best practices in terms of how to manage the ...
asthasr's user avatar
  • 3,469
6 votes
1 answer
611 views

I heavily use CTRL+ to jump between tokens in code (the _s are the navigation points): _fooBar _+ _barFoo_; Some editors, like the one in the current version of QtCreator, have (by default or ...
phresnel's user avatar
  • 554
2 votes
4 answers
344 views

I was thinking about a live editing environment where code / a source file is synchronized so that changes made by one user would be carried across to all others editing the file. Something like ...
S P's user avatar
  • 131
4 votes
3 answers
3k views

All XSLT editors I've tried till now add tab or space characters to the XSLT to indent it for formatting. This is done even in places within the XSLT where these characters are significant to the XSLT ...
pgfearo's user avatar
  • 944
8 votes
8 answers
1k views

As with most things, I'm sure this concept has been tried before - I just haven't come across editors that use what I've termed 'Virtual Formatting'. The principle is that there's a floating left-...
pgfearo's user avatar
  • 944
7 votes
6 answers
1k views

There are now lots of WYSIWYG editors, however whenever we use one on a CMS-based website we consistently have issues. The biggest being users pasting content from Word or other online sources and ...
LiamB's user avatar
  • 678