editor

Where do I put IPython configuration files?

浪子不回头ぞ 提交于 2019-12-20 18:13:10
问题 I have been trying to set my %edit editor to Emacs for a while and made very slow progress. The IPython 0.13 docs were unclear about how to actually configure this. It told me to set EDITOR to the desired editor (in my case, "emacsclient") by adding c = get_config() c.InteractiveShell.editor = 'emacsclient' to my config in my ipython folder. However, I couldn't find any such folder. I spent a very long time looking around to find just how to set IPython environment variables and found only

Where do I put IPython configuration files?

我与影子孤独终老i 提交于 2019-12-20 18:11:31
问题 I have been trying to set my %edit editor to Emacs for a while and made very slow progress. The IPython 0.13 docs were unclear about how to actually configure this. It told me to set EDITOR to the desired editor (in my case, "emacsclient") by adding c = get_config() c.InteractiveShell.editor = 'emacsclient' to my config in my ipython folder. However, I couldn't find any such folder. I spent a very long time looking around to find just how to set IPython environment variables and found only

Which editor/IDE should I use for Python? [duplicate]

大兔子大兔子 提交于 2019-12-20 15:35:24
问题 This question already has an answer here : Closed 10 years ago . Possible Duplicate: What IDE to use for Python I have Notepad++ and NetBeans 6.8, however I don't know if they work. I know you can edit Python with Notepad++ and compile/run it using the command line thing, but I'm not really sure how. I know NetBeans is a full-featured IDE and you can compile Java programs, but I don't think they support Python? Any ideas? 回答1: Eclipse with PyDev has been a great combination for me. Great

External editor in Visual Studio 2008

試著忘記壹切 提交于 2019-12-20 14:21:22
问题 Is there any way to set up external editor integration for VS2008? By this I mean when I double-click on a .CPP file in the Solution Explorer, it should open in the external editor, not the internal VS one. To keep it simple let's say I want it to open the file in Notepad++ (or how about Notepad to make it even simpler). 回答1: Right click on the type of file you want in the Solution Explorer, Then choose Open With... Pick your program, and choose "Set as Default" 回答2: Right click on any file

Is it possible to import TextMate themes to IntelliJ IDEA?

廉价感情. 提交于 2019-12-20 14:09:52
问题 Is it any way to automate import TextMate themes to IntelliJ IDEA, like converter between these two formats? 回答1: Please check the converter created by JetBrains. This is a tool to convert color schemes from TextMate to IntelliJ Platform based products such as IntelliJ IDEA, RubyMine and PyCharm. Since the way highlighting works in TextMate is not an exact match for the capabilities of IntelliJ Platform, we try to perform an intelligent mapping between the two. In particular, color

Which IDEs and text editors can deduce type of variables declared using auto keyword in C++11

孤者浪人 提交于 2019-12-20 13:00:09
问题 In "Almost always auto" article Herb Sutter lists several reasons for declaring variables using auto keyword. He says that actual variable type can be automatically deduced by IDE and shown by hovering over variable name. I would like to know which IDEs and text editors (or plugins) currently support "auto" variable type deduction. Edit: List of IDEs from answers: Visual Studio 201x Eclipse Qt Creator 2.7.0 KDevelop 4.5.1 Text editors What about Vim, Emacs, Sublime Text, etc. - are there

Using other editor with TortoiseHg

感情迁移 提交于 2019-12-20 12:32:08
问题 I'm trying to use other editor with TortoiseHG, instead of (Windows) Notepad. I have tried the solutions mentioned here: Mercurial and Notepad++ Integration and here: https://bitbucket.org/tortoisehg/thg/wiki/OpenAtLine But no results. When I right-click a file and choose "Edit Local" no file is opened at all, except when I don't set any specific editor (then file is opened in Notepad). I have tried different editors, like Notepad++ and Sublime Text 2, and no result. Also, I tried to change

Is there any online .plist editor?

ぐ巨炮叔叔 提交于 2019-12-20 11:35:40
问题 I'm interested in an online application like the tool that comes with XCode, that shows the keys and values as rows, in an editable manner and handles xml plists (I don't care if it handles binary ones as well). 回答1: So, I was wondering the exact same thing, and when I saw this question and its answer, I said "Screw it, I'm making one!" And so I did. Two days later, here's my answer to you: http://tustin2121.github.io/jsPlistor/ jsPListor (version 1 as of Aug 8th, 2013) will allow you to

Best IDE/Editor for ColdFusion? [closed]

不想你离开。 提交于 2019-12-20 11:20:23
问题 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 8 years ago . I am just starting at a job in which I will be using a lot of ColdFusion. What is the best IDE/Editor to use? 回答1: I'd like to provide

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