text-editor

vb.net/C# code editor with color coding [closed]

落花浮王杯 提交于 2019-12-05 20:04:30
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . Are there any winforms source code editor controls available with color coding ? pref. open source I seem to recall having come across something like that previously but can't seem to recall it ? I believe that Scintilla is an open source syntax-highlighting editor component. There is an open source .Net wrapper utility on CodePlex . SharpDevelop is an open source application that has an editor with color coding

How to prevent horizontal scrolling of MCE editor

微笑、不失礼 提交于 2019-12-05 11:52:27
I am using TinyMCE text editor and the text within the does not roll over when the line goes beyond the width, rather a scroll bar appears and the text goes on horizontally. How can I confine the text withing the text box width and not have a horizontal scroll bar. .tinymce-content { white-space: normal; } This sounds like a CSS issue. Can you provide a working example or demo URL? It sounds like the text is not wrapping to its container. Also, text won't wrap unless it contains spaces or hyphens, if that makes a difference. There's a param in TinyMCE that adds CSS style which makes text

How to set the guides (right-margin marks) in VS2012 text editors

帅比萌擦擦* 提交于 2019-12-05 10:23:53
Is it possible to set the guides (right-margin marks) in the visual studio 2012 text editors without any extensions? Edit : registry key HKCU\Software\Microsoft\VisualStudio\11.0\Text Editor doesn't work. Any working solutions? Alexander Zwitbaum Now is the Paul Harrington's Editor Guidelines Extension for the Visual Studio 2012 available. So you have an extended context menu, where you can Add, Remove or Change Color of the guidelines. 来源: https://stackoverflow.com/questions/12073277/how-to-set-the-guides-right-margin-marks-in-vs2012-text-editors

Do you draw a distinction between text editors and IDEs?

与世无争的帅哥 提交于 2019-12-05 08:41:36
I've seen several responses to questions asking for IDEs where text editors were suggested and vice-versa. That makes me think that people treat them as the same thing, where I draw clear distinctions. How do you define "text editor" and "IDE"? Do you see a difference between the two tools? Note that I accepted an answer which I think best addressed the concepts of "text editor" and "IDE". However, it's just my personal opinion of what best addresses the question and I will continue to check in on this question from time to time to see if there's a better answer and I will accept that one. I

Block selecting text or selecting multiple text at once

旧街凉风 提交于 2019-12-05 08:30:19
Does Visual Studio (any version) offer the ability to select text in either a block or select several snippets at once, to either change or delete? To be clear I'm referring to the actual text-editor interface. you can certainly do block selection by hold down the Alt key while doing a selection Go to opening or closing brace and press Ctrl+Shift+]. 来源: https://stackoverflow.com/questions/4619432/block-selecting-text-or-selecting-multiple-text-at-once

Emacs session / projects / window management

别说谁变了你拦得住时间么 提交于 2019-12-05 08:24:02
I am working with Ruby on Rails projects most of the time so I need a way to save projects and the state of the buffers/windows I am working on, mostly because I often find myself switching to a different project for a few minutes and then going back to the project I was working on. Desktop.el seems to be very close except for the window configuration saving. For those familiar with TextMate, I'm looking for something like the textmate project files that you can open and they open a different instance of the editor that only opens the files in that project. Thanks, Cezar I tried to put myself

How do you hide arbitrary section of code in VS Code?

送分小仙女□ 提交于 2019-12-05 05:04:28
By "VS Code" I mean the lightweight text editor not the monolithic IDE, unfortunately searching this on google will bring up many pieces of irrelevant information about how to do this in Visual Studio. To the question itself, Anybody knows how to hide arbitrary selected lines of code in "Visual Studio Code" , preferably into a plus sign like collapsing does? Note: this is different than collapsing nested code which probably could be achieved by Ctrl+K,Ctrl+<num> , what I need here is to hide specific block of code of choice, no matter nested or not. EDIT: I see there are people who don't

Any In-place Javascript Rich Text Editor available? [closed]

妖精的绣舞 提交于 2019-12-05 04:22:47
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . Are there any in-place editor in JS that supports Rich Text like TinyMCE / FCKEditor? e.g. of in-place editing (non-rich text): http://www.appelsiini.net/projects/jeditable/default.html 回答1: jEditable and TinyMCE together: Google is your friend! 回答2: NicEdit is what you want I think, there are some demos

Editor to select text that is inside a rectangle

半世苍凉 提交于 2019-12-05 00:45:01
Often I find myself with some text where I want to exclude a certain part of the text, say the first three characters of 40 lines. The fastest way I could think of to do this would be to draw a rectangle and copy the text. I am mostly using Windows, but I am sure grep or something similar could do this with a tiny bit of code. My best way of doing this is to open Command Prompt. Then run "Edit" (yes the good old one). Then paste the text in there (this actually takes a significant amount of time). Then I am able to select the rectangle I am after. Is there any other editors that support this

Replace in multiple files - graphical tool for Linux

拟墨画扇 提交于 2019-12-05 00:01:16
It needs to be graphical. No sed, awk, grep, perl, whatever. I know how to use those and I do use them now, but I need to cherry-pick each replace in 300+ files. I want a tool where I can: type a search string type a replace string select a directory and file extension and it would recursively go into each file in that directory and its sub-directories, open it and scroll to the place where search string is and offer two options: replace (and find next) find next Nothing more. Reg.exp. support is a plus, but not required. SOLVED: Regexxer is exactly what I needed. In case someone needs it on