atom-editor

How to uninstall Atom text editor on Windows?

≯℡__Kan透↙ 提交于 2019-12-03 09:14:24
问题 I installed the text editor Atom for Windows with the installer package (blog post with details). Note that I did not use the old way of installing, with Chocolatey. When I wanted to uninstall, I didn't see any uninstall program. When I went to the "Remove programs" window, the uninstall option was invalid. How can I uninstall it? I found the same question for Linux and Mac, but so far no details for Windows. 回答1: You have to remove some folders and then Atom should be removed from your

Select all found RegEx results in Atom

南笙酒味 提交于 2019-12-03 08:08:30
问题 I'm trying to select all of the results found by a regex find so I can modify them all ( not replace them with text! ), for example, making them all uppercase with Cmd + K -> Cmd + U . I'm aware that I could do them one by one via repeating Cmd + G, Cmd + K, Cmd + U , but for a large file this simply isn't practical or realistic. I'm also aware of using bash and may other scripting alternatives, I'd like to find a way to do it inside Atom, I'm happy to install an external library if needed.

Plain text autocomplete in Atom (Github)

末鹿安然 提交于 2019-12-03 07:43:27
I've auto-complete and auto-complete+ installed on the latest version of Atom. Unfortunately, these packages don't auto-complete or suggest words while typing plain text as open office or some sublime packages do. For instance, if I am typing repo and the word repository already appears in the current document, I would like to have some sort of auto-completion / intellisense to show up. I looked, in vain, for package in atom achieving that. So, the question is, do you know any package to do that in atom or any intuitions on how to create it ? Thanks. phw Actually the autocomplete-plus package

Not able to connect to atom.io for themes and packages

烈酒焚心 提交于 2019-12-03 06:47:48
问题 I believe my work proxy is preventing me from being able to add themes and packages to Atom. From the preferences menu, I get: Fetching featured packages and themes failed. Hide output… tunneling socket could not be established, cause=140499728967552:error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol:../deps/openssl/openssl/ssl/s23_clnt.c:766: Is it possible to make it use my $https_proxy variable? Is there some way to configure it to not use https? 回答1: You can configure

How connect to proxy in electron webview?

别说谁变了你拦得住时间么 提交于 2019-12-03 06:23:19
问题 as I can connect through a to a free proxy server (or pay), currently in use as electron JS solution as desktop application example proxy list servers http://proxylist.hidemyass.com/ 回答1: You can use .setProxy() method of session object. You're able to specify proxy directly like in example below: // in main.js var electron = require('electron'); var BrowserWindow = electron.BrowserWindow; mainWindow = new BrowserWindow({ "width": 970, "height": 500, "center": true, 'title': 'Main window', })

How to use visual studio code to debug django

感情迁移 提交于 2019-12-03 05:09:01
问题 I'm new at django development and come from desktop/mobile app development with Xcode and related IDE. I have to use Django and I was wondering if there was an efficient way to debug it using Visual Studio Code (or Atom ). Any help related to Django IDE would be helpful too. 回答1: For VSCode (full disclosure, I'm one of the VSCode developers) try installing the Python extension to get started. This documentation covers debugging Django. There should be a included debug configuration or you can

How to run a program in Atom Editor?

耗尽温柔 提交于 2019-12-03 04:15:11
I found Atom editor as good free alternative to Sublime text editor. Not able to find a straightforward way to run a program in Atom editor. In my case, I am trying to run a java program. Please let me know if it's possible? If yes, please describe the steps to follow. I find the Script package useful for this. You can download it here . Once installed you can run scripts in many languages directly from Atom using cmd-i on Mac or shift-ctrl-b on Windows or Linux. ZigZag Click on Packages --> Commmand Palette --> Select Toggle . Type Install Packages and Themes . Search for Script and then

How to uninstall Atom text editor on Linux?

谁说胖子不能爱 提交于 2019-12-03 04:00:59
问题 i was reading the documentation looking for a way to cleanly uninstall Atom from my linux OS, but i didn't find anything related. Is there a set of directories to delete? or maybe an script to run? Thanks for the attention 回答1: I have posted the same question in the Github Project Repository and this is the complete answer: https://github.com/atom/atom/issues/2195#issuecomment-42917489 The commands to execute are: sudo rm /usr/local/bin/atom sudo rm /usr/local/bin/apm rm -rf ~/atom rm -rf ~/

How can I manually download packages for atom editor and install them (manually)?

左心房为你撑大大i 提交于 2019-12-03 03:57:03
问题 Due to poor internet connection my atom packages won’t install from settings>preferences>install>packages . So I think I need to manually install them. For example: I tried the repository from respective github page and cloned it in users>.atom>packages but this didn't work. Any help? I love this text editor so it would be pretty handy if I could install more packages manually. Any other ways are always welcome! 回答1: There are a few ways, most are similar to this : You can download the

You don't have write permissions for the /Library/Ruby/Gems/2.3.0 directory. (mac user)

南笙酒味 提交于 2019-12-03 03:31:09
问题 below is what I need to do. To run the specs, you'll need to install RSpec. First, run gem install bundler in the root directory of your project. Then, run bundle install . To run a single spec file, run a command like this: bundle exec rspec spec/00_hello_spec.rb . To run all of the specs at once, run bundle exec rspec . So, I typed gem install bundler to terminal, and got You don't have write permissions for the /Library/Ruby/Gems/2.3.0 directory. and this was in the project file in atom