Yanor.net/
Wiki
Blog
GitHub
Sandbox
開始行:
* CTRL-Mで改行 [#acebeacb]
**目的 [#b2c78173]
- VSCodeのデフォルトでは、CTRL-Mは'''editor.action.toggle...
- CTRL-Mを押すと、ステータスバーに'''Tab moves focus'''と...
- 他のテキストエディタでよくあるようにCTRL-MでCRを出力し...
** 方法 [#r1cb85b8]
#pr(json){{
{
"key": "ctrl+m",
"command": "type",
"args": {
"text": "\n"
},
"when": "editorTextFocus"
},
}}
- keybinding.jsonに上のような記述を追加する。
** 参考 [#p4f26a29]
*** Tab trapping [#wfeb45ca]
https://github.com/Microsoft/vscode-docs/blob/master/docs...
終了行:
* CTRL-Mで改行 [#acebeacb]
**目的 [#b2c78173]
- VSCodeのデフォルトでは、CTRL-Mは'''editor.action.toggle...
- CTRL-Mを押すと、ステータスバーに'''Tab moves focus'''と...
- 他のテキストエディタでよくあるようにCTRL-MでCRを出力し...
** 方法 [#r1cb85b8]
#pr(json){{
{
"key": "ctrl+m",
"command": "type",
"args": {
"text": "\n"
},
"when": "editorTextFocus"
},
}}
- keybinding.jsonに上のような記述を追加する。
** 参考 [#p4f26a29]
*** Tab trapping [#wfeb45ca]
https://github.com/Microsoft/vscode-docs/blob/master/docs...
ページ名: