Cursor #
资料 #
- Cursor Prompting HandBook
- Awesome CursorRules
- cursor directory - Discover Cursor Rules & MCP Servers
笔记 #
快捷键 #
恢复VSCode中CMD + shift +k
的删除当前行的功能,这个用习惯了,舍弃不了,只好在keybindings.json
中关闭cursor提供了2个快捷键功能,具体配置如下:
1// Place your key bindings in this file to override the defaults
2[
3 {
4 "key": "shift+cmd+k",
5 "command": "-aipopup.action.modal.generate",
6 "when": "editorFocus && !composerBarIsVisible"
7 },
8 {
9 "key": "shift+cmd+k",
10 "command": "-composer.openAsBar"
11 }
12]