sublimetext3

How to configure Sublime Text 3 for Anaconda?

风流意气都作罢 提交于 2020-04-16 04:49:32
问题 I download and install Anaconda2 from Anaconda Home. I registered Anaconda as my default Python2, but didn't add to my PATH. After this, I start Anaconda Prompt and everything is OK. Now I want to use Anaconda with Sublime Text 3. After doing some search, I install the Anaconda plugin by Package Control. After that, I change Anaconda's Default Setting like ... "python_interpreter": "E:\\Programs\\Anaconda2\\python.exe", ... and User Setting like { "python_interpreter": "E:\\Programs\

syntax highlight (.tmLanguage) in Sublime Text 3 for packages

流过昼夜 提交于 2020-02-24 01:55:29
问题 I work on this plugin Syntax highlight does not work with Sublime Text 3 when plugin is installed using package control. Error loading syntax file "Sublime Text 3/Installed Packages/robot.tmLanguage": Unable to open Sublime Text 3/Installed Packages/robot.tmLanguage The plugin is under Installed Packcages/Robot Framework Assistant.sublime-package , the file 'robot.tmLanguage' in inside Robot Framework Assistant.sublime-package archive. Here is how I set paths https://github.com/andriyko

Easier Access to sublime macros

妖精的绣舞 提交于 2020-01-25 08:04:55
问题 I know how to record, save and load macros in sublime text 3, I also know how to bind these macros to keyboard shortcuts. What I would like to know is there a plugin or feature in sublime that means I can have my macros showing in the sidebar ? I know that I can go to tools->macros->user But I was hoping that there was perhaps a package or customisation option so I can see my macro's on a side panel or menu and click on them. Im using a mac so I cant use things like auto hotkey to make a GUI

Sublime sftp connects to wrong container

寵の児 提交于 2020-01-25 04:05:12
问题 I have two different Docker containers under the same host stack. Currently I'm on OSX and using Sublime Text 3 with the SFTP plugin. For each different dev environment (Docker container) I have a different sftp-config.json file and I am using different SSH key files. Here are my host entries for both files: first host: "host": "example-dev.xxx.de", "user": "userxxx", "remote_path": "/home/xxx/www_trunk", "ssh_key_file": "~/work/Misc/pass/private1.pem" second host: "host": "example2-dev.xxx

How to install Babel using Package Control on Sublime Text 3?

删除回忆录丶 提交于 2020-01-25 00:39:32
问题 I want to install Babel. I'm using a Mac, I already have Sublime Text 3 and Package Controll newly installed. So I tried cmd + shift + p to open up Package Controll and I typed " Install " but nothing shows up. I was following this link. I need Babel for React syntax highlighting. 回答1: You might what to check the file path of where Sublime 3 was placed. Did you sudo install? Perhaps this link will help. http://www.sublimetext.com/forum/viewtopic.php?f=3&t=12909 回答2: Had the same issue, in my

Can't open multiple files in Sublime Text 3

不想你离开。 提交于 2020-01-23 06:21:52
问题 Whether I'm in a Single or 2 Column mode, I am only able to have 2-3 open files (tabs) per window. When I hit what appears to be a limit, attempts to open a file (by clicking in Sidebar View) will replace an already open file. Is there a setting I can change or have I hit a working-as-designed limitation? Environment: Sublime Text 3 Stable Build 3103 OS X (El Capitan) 10.11.4 BTW: If I use File Open it does not appear to have the same problem as I can open may files that way. 回答1: When you

Could someone help me configure MinGW in SublimeText 3? (Newbie)

∥☆過路亽.° 提交于 2020-01-22 10:33:43
问题 I downloaded MinGW following the first link here https://isocpp.org/get-started and now I need to configure it in SubimeText 3. I know I should go to Tools > Build System > New Build System... But what should I specify there? I use Win7x64. And MinGW is in C:\MinGW 回答1: The complete reference for build systems is here. The first thing you need to do is make sure that the C:\MinGW\bin directory is in your PATH , then restart Sublime so the change gets picked up. Once you've done that, create a

Linting not working when using babel-eslint on Sublime Text 3

走远了吗. 提交于 2020-01-22 09:29:47
问题 I am trying to get babel-eslint to work on Sublime 3. I have installed: eslint and babel-eslint globally on npm SublimeLinter package on Sublime SublimeLinter-contrib-eslint package on Sublime Also, I have added: "syntax_map": { ... "JavaScript (Babel)": "javascript" } to my SublimeLinter.sublime-settings file. When I run the linter with "parser": "espree" on my .eslintrc file it works fine. But when I change the parser to babel-eslint it stops working. I tried to follow the tutorial here:

Regex: replace text with part of the file full path in SublimeText 3

喜欢而已 提交于 2020-01-16 11:52:14
问题 In a "main directory" I have a lot of .txt files, in a lot of subdirectories. Something like "C:\FirstDir\SecondDir\ MainDir\SomeSubDir_specific_subdirs_\ *.txt" In each file I want to replace the line: reference = someotherfile.ext with reference = MainDir\SomeSubDir\_specific_subdirs_\someotherfile.ext I've built this expressions: find: (reference = )(?!_this_dir_)(.*\.txt) replace: \1MainDir\\SomeSubDir\\_this_dir_\\\2 but it requires me to open one folder at time and write the folder name

Regex: replace text with part of the file full path in SublimeText 3

别来无恙 提交于 2020-01-16 11:51:32
问题 In a "main directory" I have a lot of .txt files, in a lot of subdirectories. Something like "C:\FirstDir\SecondDir\ MainDir\SomeSubDir_specific_subdirs_\ *.txt" In each file I want to replace the line: reference = someotherfile.ext with reference = MainDir\SomeSubDir\_specific_subdirs_\someotherfile.ext I've built this expressions: find: (reference = )(?!_this_dir_)(.*\.txt) replace: \1MainDir\\SomeSubDir\\_this_dir_\\\2 but it requires me to open one folder at time and write the folder name