sublime个人设置

如何拥有jiangly蒋老师同款编译器(sublime c++配置 竞赛向)_哔哩哔哩_bilibili

Sublime Text 4的安装教程(新手竞赛向) - 知乎 (zhihu.com)

创建文件自动保存为c++

  • 打开 Sublime Text 软件。
  • 转到 "Tools"(工具)> "Developer"(开发者)> "New Plugin"(新建插件)。
  • 在打开的新文件中,粘贴以下代码:
python 复制代码
import sublime
import sublime_plugin

class SetDefaultSyntaxCommand(sublime_plugin.EventListener):
    def on_new(self, view):
        view.set_syntax_file('Packages/C++/C++.sublime-syntax')
  • 保存文件,文件名可以是任何您喜欢的,但是后缀必须是 .py,比如 SetDefaultSyntax.py
  • 将文件保存到 Sublime Text 的 Packages/User 目录下,这样 Sublime Text 就能够识别这个插件了。

首选项:设置

python 复制代码
{
	
	"theme": "Adaptive.sublime-theme",
	"color_scheme": "Packages/Monokai++/themes/Monokai++.tmTheme",
	"font_size": 19,
	"ignored_packages":
	[
	],
	"index_files": true,
	"save_on_focus_lost": true,
}

首选项:快捷键设置

python 复制代码
[
    { "keys": ["keypad_enter"], "command": "insert", "args": {"characters": "\n"} },
    // { "keys": ["keypad_enter"], "command": "commit_completion", "context":
    //     [
    //         { "key": "auto_complete_visible", "operator": "equal", "operand": true }
    //     ]
    // },
    // { "keys": ["keypad_enter"], "command": "commit_completion", "context":
    //     [
    //         { "key": "auto_complete_visible", "operator": "equal", "operand": false }
    //     ]
    // },
    // { "keys": ["keypad_enter"], "command": "insert", "args": {"characters": "\n"}, "context":
    //     [
    //         { "key": "auto_complete_visible", "operator": "equal", "operand": false },
    //         { "key": "setting.auto_indent", "operator": "equal", "operand": true },
    //         { "key": "preceding_text", "operator": "regex_contains", "operand": "\n$", "match_all": true }
    //     ]
    // },
    // { "keys": ["keypad_enter"], "command": "commit_completion" },
    { "keys": ["keypad_enter"], "command": "select", "context":
        [
            { "key": "overlay_has_focus", "operator": "equal", "operand": true }
        ]
    },
    { "keys": ["alt+down"], "command": "move_to", "args": {"to": "eof", "extend": false} },
    { "keys": ["alt+left"], "command": "move_to", "args": {"to": "bol", "extend": false} },
    { "keys": ["alt+right"], "command": "move_to", "args": {"to": "eol", "extend": false} },
    { "keys": ["shift+alt+up"], "command": "move_to", "args": {"to": "bof", "extend": true} },
    { "keys": ["shift+alt+down"], "command": "move_to", "args": {"to": "eof", "extend": true} },
    { "keys": ["shift+alt+right"], "command": "move_to", "args": {"to": "eol", "extend": true} },
    { "keys": ["shift+alt+left"], "command": "move_to", "args": {"to": "bol", "extend": true} },
    { "keys": ["alt+up"], "command": "move_to", "args": {"to": "bof", "extend": false} },
]

Package Control 问题

【解决】Sublime Text找不到Package Control选项,且输入install也不显示Install Package(其中一种情况)_sublime没有package control-CSDN博客

相关推荐
偶尔微微一笑1 小时前
AI网络渗透kali应用(gptshell)
linux·人工智能·python·自然语言处理·编辑器
timing9942 小时前
LVGL在VScode的WSL2中仿真
ide·vscode·编辑器
kooboo china.7 小时前
Tailwind CSS 实战:基于 Kooboo 构建企业官网页面(一)
前端·css·编辑器
小妖6669 小时前
vscode vue文件单行注释失效解决办法
ide·vscode·编辑器
火柴盒zhang10 小时前
websheet之 编辑器
开发语言·前端·javascript·编辑器·spreadsheet·websheet
Geek__199211 小时前
VSCode远程图形化GDB
ide·vscode·编辑器
xx155802862xx13 小时前
vscode 打开csv乱码
ide·vscode·编辑器
静听夜半雨13 小时前
CANoe入门——3、新建LIN工程及LIN DataBase(LDF文件)的创建
网络·数据库·c++·编辑器
信号处理学渣14 小时前
Git命令行中vim的操作
git·编辑器·vim
Magnum Lehar20 小时前
ApophisZerg游戏引擎项目目录展示
人工智能·vscode·编辑器·游戏引擎