每次出现错误时,Sublimelinter会启动,标记错误,并且会弹出一个显示第一个错误的窗口。
我目前在Ubuntu上使用仅保存模式和sublime3。我正在编辑php文件
有人可以帮忙吗?谢谢堆
我的设置如下......
{
"user": {
"debug": false,
"delay": 0.25,
"error_color": "D02000",
"gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme",
"gutter_theme_excludes": [],
"lint_mode": "save only",
"linters": {
"php": {
"@disable": false,
"args": [],
"excludes": []
}
},
"mark_style": "squiggly underline",
"no_column_highlights_line": false,
"passive_warnings": true,
"paths": {
"linux": [],
"osx": [],
"windows": []
},
"python_paths": {
"linux": [],
"osx": [],
"windows": []
},
"rc_search_limit": 3,
"shell_timeout": 10,
"show_errors_on_save": true,
"show_marks_in_minimap": true,
"syntax_map": {
"html (django)": "html",
"html (rails)": "html",
"html 5": "html",
"php": "html",
"python django": "python"
},
"warning_color": "DDB700",
"wrap_find": true
}
}
答案 0 :(得分:2)
我有同样的问题,我的lint_mode设置为后台。要解决此问题,请转到工具> SublimeLinter>在保存时显示错误。如果选中,请选中它以取消选中它。
答案 1 :(得分:2)
我有同样的问题,解决它只是删除行:
“工具提示”:true
来自SublimeLinter»用户设置文件。
答案 2 :(得分:1)
这听起来像加载/保存lint模式。背景模式的侵入性要小得多。您希望在SublimeLinter包用户设置中使用"lint_mode": "background"
。然后在有问题的所有线路上的排水沟中都会出现警告和错误符号。
答案 3 :(得分:0)
在您的preference.sublime-settings
上只是把这一行
"sublimelinter_popup_errors_on_save": true,
为了显示您需要的页面上的所有错误
ctrl + super + a