text-editor

Text Editor with Scripting…for Linux

一世执手 提交于 2019-12-21 17:11:40
问题 For a while now, I have been using UltraEdit on my Windows box. The ability to write scripts with a familiar language (JavaScript) has proved to be extremely useful. The only problem is that I cannot use it on my Linux box at work. Is there a comparable text editor that runs on Linux and has an integrated scripting engine? Not breaking the bank and being cross-platform would be great. EDIT:While recordable macros are great, I use the scripting engine much more. 回答1: All of the major open

Reduce left-margin in Visual Studio 2015

元气小坏坏 提交于 2019-12-21 07:01:01
问题 Please can anyone tell me how I can get rid of the margin at the left edge of the editor in VS2015? I don't mind the "indicator margin", but there is now a large space between that and the start of my code. In Tools-Options - Text-Editor - General - Display, I have the "Selection margin" turned off. Turning it on makes the gap even wider. I believe that the additional margin is used by the new "code assistance" light-bulb, which I would gladly turn off, but I cannot find an option for it. I

Emacs: Insert tab instead of spaces

守給你的承諾、 提交于 2019-12-21 06:49:10
问题 For several reasons I prefer to configure my editor to insert spaces when TAB is pressed. But recently I discovered that tabs should remain as tabs in make files. How do I insert tab ( \t , not " " ) without reconfiguring editors each time I need to write make files? I use the following editors: Emacs, Kate, gedit, and the Visual Studio editor. 回答1: Emacs' Makefile mode takes care of where to insert tabs and spaces as long as you press the right keys at the right places. Either that, or I

Syntax highlighting in terminal vim but not gVIM

假装没事ソ 提交于 2019-12-21 05:22:23
问题 I am currently using VIM in the terminal and have perfect syntax highlighting happening. But then when I try to use gvim no matter what type of file or how many times I type: ":syntax on" I don't get any syntax highlighting. Any ideas anyone? Thank you. Here is my .vimrc for those who are interested: " Turn on pathogen for all plug-ins installed after 9/13/2010 call pathogen#helptags() call pathogen#runtime_append_all_bundles() " My color theme for vim colors sorcerer " Disable line wrapping

Pseudo Code Editor [closed]

試著忘記壹切 提交于 2019-12-21 03:27:33
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . Is there an Open Source "Pseudo Code" Editor with "Syntax Highlighting" and "Auto Complete"? Maybe even a pack for Notepad++ or any

Are there any good F# text editors?

落花浮王杯 提交于 2019-12-20 18:29:20
问题 Are there any good text editors for F#? Instead of firing up resource-intensive Visual Studio, I would like to know if there are any text editors that can pretty-format F# code. I am just getting started with F# and learning through FSI.exe with Notepad is giving me so much trouble... 回答1: Check this out: F# Without Visual Studio 回答2: Not to be too much of a tease, but looking ahead, VS2010 uses a new rehostable editor component, you can hear some about it here: Hanselminutes Podcast 147 -

Are there any good F# text editors?

自闭症网瘾萝莉.ら 提交于 2019-12-20 18:28:21
问题 Are there any good text editors for F#? Instead of firing up resource-intensive Visual Studio, I would like to know if there are any text editors that can pretty-format F# code. I am just getting started with F# and learning through FSI.exe with Notepad is giving me so much trouble... 回答1: Check this out: F# Without Visual Studio 回答2: Not to be too much of a tease, but looking ahead, VS2010 uses a new rehostable editor component, you can hear some about it here: Hanselminutes Podcast 147 -

Redactor editor text format issues with Chrome version 58

寵の児 提交于 2019-12-20 17:41:36
问题 We're using Redactor(https://imperavi.com/redactor/) version 10.1.1 and not migrated to Redactor II due to lot of dependencies on project. Recently We're facing a very weird issue with Chrome version 58. Issues are: -- Not able to format bold, italic, underline, sup, sub etc. for selected text Kindly let us know is there any fix for this. Any kind of help would be greatly appreciated. Update as per accepted work around solution: // Provided solution is tested for Redactor version 10.1.1

Redactor editor text format issues with Chrome version 58

江枫思渺然 提交于 2019-12-20 17:41:17
问题 We're using Redactor(https://imperavi.com/redactor/) version 10.1.1 and not migrated to Redactor II due to lot of dependencies on project. Recently We're facing a very weird issue with Chrome version 58. Issues are: -- Not able to format bold, italic, underline, sup, sub etc. for selected text Kindly let us know is there any fix for this. Any kind of help would be greatly appreciated. Update as per accepted work around solution: // Provided solution is tested for Redactor version 10.1.1

Configure Eclipse word-boundaries so 'Next-Word-Key' skips whole identifier

我的梦境 提交于 2019-12-20 11:06:41
问题 If I have a piece of Code MyIdentifierIsNice(OtherThingAlsoNice isBetterThen); I'd like to change the behavior of Ctrl-Left in Eclipse from stopping here: My|Identifier|Is|Nice|(|Other|Thing|Also|Nice is|Better|Then|);| to here: MyIdentifierIsNice(|OtherThingAlsoNice |isBetterThen);| ...or at least just not so often. Other variants would be also fine, like: MyIdentifierIsNice|(|OtherThingAlsoNice| isBetterThen|);| Mainly it should stop considering a CamelCaseIdentifier to consist of several