[ Sublime text3 ] Package Controller 설치 - 기본설치 프로그램 > editor

본문 바로가기
사이트 내 전체검색

editor

[ Sublime text3 ] Package Controller 설치 - 기본설치 프로그램

페이지 정보

작성자 웹지기 댓글 0건 조회 5,259회 작성일 18-09-14 23:44

본문

Sublime Text3의 추가 설정을 사용하고 싶다면 무조건 설치해야 하는 코어라고 보면 됨.
Package Controller 을 먼저 설치
단축키 Ctrl + ` 또는 메뉴 View > Show Console 클릭


하단에 콘솔이 열리면 링크의 코드를 복사하고 엔터
코드는 접속할 때마다 바뀜. 사이트 방문해서 코드를 복사해야 함.
설치확인은 메뉴 > Perferences > Package Control 이 있다면 정상

원문 사이트 내용
=================================================
INSTALLATION 

Simple

The simplest method of installation is through the Sublime Text console. The console is accessed via the  ctrl+`  shortcut or the  View  >  Show Console  menu. Once open, paste the appropriate Python code for your version of Sublime Text into the console.

SUBLIME TEXT 3 SUBLIME TEXT 2

import urllib.request,os,hashlib; h = '6f4c264a24d933ce70df5dedcf1dcaee' + 'ebe013ee18cced0ef93d5f746d80ef60'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); by = urllib.request.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); print('Error validating download (got %s instead of %s), please try manual install' % (dh, h)) if dh != h else open(os.path.join( ipp, pf), 'wb' ).write(by)

This code creates the Installed Packages folder for you (if necessary), and then downloads the Package Control.sublime-package into it. The download will be done over HTTP instead of HTTPS due to Python standard library limitations, however the file will be validated using SHA-256.

WARNING:  Please do not redistribute the install code via another website. It will change with every release. Instead, please link to this page.

Manual

If for some reason the console installation instructions do not work for you (such as having a proxy on your network), perform the following steps to manually install Package Control:

  1. Click the Preferences >  Browse Packages… menu
  2. Browse up a folder and then into the Installed Packages/ folder
  3. Download Package Control.sublime-package and copy it into the Installed Packages/ directory
  4. Restart Sublime Text
++++++++++++++++++++++++++++++++++++++++++++++++++

[이 게시물은 웹지기님에 의해 2019-03-15 15:37:59 knowledge에서 이동 됨]
추천0 비추천0

댓글목록

등록된 댓글이 없습니다.

Total 53건 2 페이지
  • 38 [ Atom api ] Atom api 단축키
  • Atom단축키(Windows기준) Editor Ctrl + Shift + P:커맨드 팔레트 열기 Ctrl + ,:설정 뷰 열기 Ctrl + O:파일 열기 Ctrl + N:새로운 파일 생성 Ctrl + W:창 닫기(뷰 포함) Ctrl + \: Treeview토글 Alt + \: Treeview포커스 전환 Ctrl + .:키 바인딩 현황 보기 Ctrl + K→방향키:뷰 나누기 Ctrl + K→Ctrl +방향키:뷰 전환 Ctrl + k U : 커서가 위치한 단어를 대...
  • 웹지기 09-11 5970 0 0 댓글 0
  • 37 [ shell ] cmder 한글문서 깨짐, gitk diff창 한글깨짐 시
  • Cmder 에서 한글 문서를 열었을 때 한글이 깨져서 보인다면 커맨드 창에서 # set LANG=ko_KR.UTF-8 입력하고 한글 파일을 열어본다. gitk diff창에서 한글이 깨져서 보인다면 커맨드 창에서 # git config--global gui.encoding utf-8 입력하고 다시 확인해본다.
  • 웹지기 06-02 5887 0 0 댓글 0
  • 36 [ vscode ] vscode에서 php 사용하기
  • vscode에서 php 사용하기위해서 설치할 것은 Extenstions > 검색창에 > PHP IntelliSense >> install >> manage >> Extension settings > Edit in settings.json >> 아래부분을 추가 "php.executablePath": "p...
  • 웹지기 05-04 5661 0 0 댓글 0
  • 35 [ eclipse ] 세로로 나오는 탭 가이드 라인 만들기
  • Help > Install New Software > Add > Name : ident guide lineLocation :http://kiritsuku.github.io/IndentGuide/update/ 설치 후 이클립스 재시작 문구가 나오면 재시작 화면에 세로라인이 표기가 안되면 첨부파일을 다운받아서 이클립스 설치 위치에 붙여넣기 설치 경로는 다음과 같음. 이클립스 설치 위치 아래\.metadata\.plugins\org.eclipse.cor...
  • 웹지기 12-01 5649 0 0 댓글 0
  • 34 [ eclipse ] 이클립스 자주사용하는 단축키 모음
  • 이클립스 자주 사용하는 단축키 모음 Ctrl + N 또는 Alt + Shift + N : 새로운 파일 / 프로젝트 생성 Ctrl + M : 전체화면 토글(현재 자바파일의 전체 화면) Ctrl + / : 주석 처리 - 한 라인/블록에 대해 주석 처리 (추가 및 제거) Ctrl + Shift + / : 블럭주석 ( /* */ ) Ctrl + Shift + \ : 블럭주석해제 Ctrl + Space : 자동완성 Ctrl + Shift + F : 페이지 자동 정렬 Ctrl + I : 들...
  • 웹지기 12-18 5441 0 0 댓글 0
  • 열람중 [ Sublime text3 ] Package Controller 설치 - 기본설치 프로그램
  • Sublime Text3의 추가 설정을 사용하고 싶다면 무조건 설치해야 하는 코어라고 보면 됨.Package Controller 을 먼저 설치 단축키 Ctrl + ` 또는 메뉴 View > Show Console 클릭 https://packagecontrol.io/installation하단에 콘솔이 열리면 링크의 코드를 복사하고 엔터코드는 접속할 때마다 바뀜. 사이트 방문해서 코드를 복사해야 함.설치확인은 메뉴 > Perferences > Packag...
  • 웹지기 09-14 5260 0 0 댓글 0
  • 32 [ Atom ] 쓸만한 테마 및 패키지
  • ※ Installed Packages ▶ Community packages. 1. Remote-FTP 2. activate-power-mode 3. atom-beautify 4. autocomplete-php 5. emmet 6. highlight-line 7. highlight-selected 8. linter 9. file-icons 10. minimap ▶ Core Packages. - basic setting tree-view = basic - ...
  • 웹지기 09-12 5071 0 0 댓글 6
  • 31 [ Atom ] 테마 변경 및 php 색바꾸기
  • 일단 테마를 설치해서 view code를 볼 수 있어야 한다. 테마 설치후 view code를 열어서 파일 css를 덮어씌운다. 뷰코드는 테마명 > style폴더 >> base.less >> colors.less >> syntax-variables.less > index.less 이런식이다 파일이 없으면 만든다. index.less는 base.less를 향...
  • 웹지기 09-13 5061 1 0 댓글 1
  • 30 [ Atom ] 가운데 선 제거
  • 아톰 에디터 가운데 부분에 선이 그어져 있슴.선을 지우자File > Stylesheet > 하단부분에 다음을 추가한다.// editor center line deleteatom-text-editor::shadow{ .wrap-guide{ visibility: hidden; }} [이 게시물은 웹지기님에 의해 2019-03-15 15:37:59 knowledge에서 이동 됨]
  • 웹지기 09-12 4711 0 0 댓글 0
  • 29 [ Atom ] Show Tree View On Right Side( 디렉토리 우측 ) 옵션 사용
  • V1.17의 Docks가 릴리즈 됨에 따라 Tree View 가 Panel에서 Dock로 변경되었다. Show Tree View On Right Side 옵션이 사라지고 대신 Tree View를 끌어서 옮길 수 있도록 수정이 되었다. [이 게시물은 웹지기님에 의해 2019-03-15 15:47:08 knowledge에서 이동 됨]
  • 웹지기 09-18 4700 1 0 댓글 1
  • 28 [ shell ] editor > cmder console emulator 윈도우 콘솔
  • 윈도우에서 사용하기 좋은 콘솔 프로그램 Cmder | Console Emulator 설치도 간단하고 가벼워서 굉장히 유용한 프로그램이다. 설치 압축해제 (선택사항체크) 자신의 실행파일을 bin PATH를 주의해서 넣어주면 됩니다. Cmder(Cmder.exe) 를 실행 탭 조작 Ctrl + ` :작업 표시 줄에서글로벌소환 Win + Alt + p : 기본 설정 (또는 제목 표...
  • 웹지기 06-02 4548 0 0 댓글 0
  • 27 [ eclipse ] Power mode 설치
  • https://github.com/GPiotr/epic-programming이곳에서 파일을 다운을 받아서 jar파일만 사용한다. 첨부파일에 포함된 파일을 사용하면 된다. 이클립스의 설치 위치에서\eclipse\dropins 폴더에 PluginProject_1.0.0.201702131458.jar 파일을 넣어주고 이클립스 재시작 파일을 넣고 재시작 했으면 파워모드로 코딩하고 싶은 파일이름위에서 Open with > Epic Editor 를 통해서 파일을 파워모드로 바꿔...
  • 웹지기 12-01 4415 0 0 댓글 0
  • 25 [ eclipse ] 탭 대신 스페이스 사용하기 - tab to space
  • java 파일 Window -> Perferences > General -> Editors -> Text Editor > Insert spaces for tabs Check Java > Code Style > formatter > New > Profile name : tabToSpace-eclipse-built-in > ok > Inden...
  • 웹지기 01-06 4317 0 0 댓글 3
+6
  • 24 [ atom ] 설정 패키지 테마 등등 설치
  • Core 설정 화면 Editor 설정 화면 URI Handling 설정 System 설정 설치시 도움이 되는 패키지 명 - activate-power-mode - atom-beautify - tabNine - busy-signal - file-icons - highlight-line - highlight-selected - intentions - jshint - linter - linter-ui-default - min...
  • 웹지기 06-29 4290 0 0 댓글 1
게시물 검색

회원로그인

접속자집계

오늘
1,533
어제
6,119
최대
33,828
전체
8,593,529

그누보드5
Copyright © funyphp.com. All rights reserved.