迎来史上最好的编辑器:VSC,没有之一

其他特性、优点什么的不罗列了,网上一大堆。总之一句话,Visual Studio Code 相见恨晚。本人是 Java Coder,于是第一时间把编辑器的快捷键弄成和 Eclipse 相同的:

// Place your key bindings in this file to overwrite the defaults
[
	{ "key": "alt+/",  "command": "editor.action.triggerSuggest","when": "editorTextFocus" },
	{ "key": "ctrl+d", "command": "editor.action.cutLines","when": "editorTextFocus" },
	{ "key": "ctrl+alt+down","command": "editor.action.copyLinesDownAction", "when": "editorTextFocus" },
	{ "key": "ctrl+alt+up", "command": "editor.action.copyLinesUpAction", "when": "editorTextFocus" },
	{ "key": "shift+alt+r","command": "editor.action.rename","when": "editorTextFocus" },
	{ "key": "ctrl+shift+c","command": "editor.action.commentLine","when": "editorTextFocus" },
	{ "key": "ctrl+d","command": "editor.action.deleteLines","when": "editorTextFocus" },
	{ "key": "ctrl+k","command": "editor.action.addSelectionToNextFindMatch","when": "editorFocus"},
	{ "key": "alt+shift+2","command": "workbench.action.splitEditor"},
	{ "key": "ctrl+shift+f","command": "editor.action.format","when": "editorTextFocus"},
]

这是网友 贡献的。

你可能感兴趣的:(迎来史上最好的编辑器:VSC,没有之一)