Blog Content

    티스토리 뷰

    서브라임텍스트

    * 서브라임 텍스트 브라우저 미리보기 화면 설정하기 방법 



    On Sublime Text 3 F12 key is bound to "goto_definition" command by default.

    서브라임텍스트3에선 F12키에 "Goto Definition"명령이 기본으로 지정되었음요.

    This package was conflicting with that key, this no longers happens. 
    이게 사이드바 인헨스먼트가 지정한 키랑 충돌해서, 제대로 동작을 안하게 되었음요.

    You need to manually add the keys now:
    이제는 당신이 직접 수동으로 키를 지정해 주셔야 함요!

    Go to Preferences -> Package Settings -> Side Bar -> Key Bindings - User
    and add any of the following:
    저기로 가서 아래 내용을 추가하시믄 되는데, 만약 다른 설정이 이미 있다면 대괄호는 빼고...
    json 표기법에 맞춰서... 뭐 그건 알아서 하시리라 믿슴다.


    [
            { "keys": ["f12"],
                "command": "side_bar_open_in_browser" ,
                "args":{"paths":[], "type":"testing", "browser":""}
            },
            { "keys": ["alt+f12"],
                "command": "side_bar_open_in_browser",
                "args":{"paths":[], "type":"production", "browser":""}
            },
            {
                "keys": ["ctrl+t"],
                "command": "side_bar_new_file2"
            },
            {
                "keys": ["f2"],
                "command": "side_bar_rename"
            },
        ]



    '개발연습막쓰기 > 개발연습 막쓰기' 카테고리의 다른 글

    연산자  (0) 2016.05.02
    변수의 적용 범위  (0) 2016.05.02
    서브라임텍스트 단축키모음  (0) 2016.04.26
    트윈맥스  (0) 2016.04.26
    서브라임텍스트3 플러그인  (0) 2016.04.26

    Comments