본문 바로가기

컴터 때찌/Error

[Error] About " Sublime Text 2 "

 

[0] 설치하면서 참고한 url

http://valley.egloos.com/viewer/?url=http://mcchae.egloos.com/11018557

 

[1] UnicodeEncodeError: 'ascii' codec can't encode characters in position 56-59: ordinal not in range(128) loaded 837 snippets

=> 파일 이름에 유니코드가 들어갔거나, 같이 열린 파일 중에 유니코드 이름인 파일이 있을때 에러가 난다.

http://ngio.co.kr/1972

 

[2] Ctrl+shift +c 가 Ctrl + break 을 바꾸는것


Preferences -> Key Bindings - User

and paste the line below

{"keys": ["ctrl+shift+c"], "command": "exec", "args": {"kill": true} } 


http://stackoverflow.com/questions/8551735/how-do-i-run-python-code-from-sublime-text-2


[3] [Decode error - output not utf-8] 떴을때

"Preferences => Browser Package..."; 를 가서 python 폴더를 열고

 "Python.sublime-build";  파일을 열어서

본인 컴퓨터의 encoding 을 적어주면 되는데


C:\Users\Leo>chcp

활성 코드 페이지: 949


위와 같은 명령어를 통해서 949가 나오면


{

"cmd": ["python", "-u", "$file"],

"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",

"selector": "source.python",

"encoding": "cp949"

}


이런식으로 맨 아랫줄에 encoding을 넣어추가해주면 해결 !!

http://blogs.reverse4you.org/entry.php?b=99