安装Sublime4后,它会以相反的顺序显示搜索结果(多个文件搜索),而不是ABC。
在Google中找不到任何解决方案。甚至尝试手动更改设置Preference -> Key bindings
[
{ "keys": ["ctrl+f"], "command": "show_panel", "args": {"panel": "find", "reverse": false} },
{ "keys": ["ctrl+shift+f"], "command": "show_panel", "args": {"panel": "find_in_files", "reverse": false} }
]但是没有结果:
Searching 729 files for "veh.category"
/home/me/Projects/mycompany/myproject/app/views/veh/_fm_form.html.haml:
/home/me/Projects/mycompany/myproject/app/views/veh/_form.html.haml:
/home/me/Projects/mycompany/myproject/app/views/veh/_veh.html.haml:
/home/me/Projects/mycompany/myproject/app/views/events/_veh.html.haml:
7 matches across 5 files链接到forum.sublimetext.com上的至尊论坛
链接到https://github.com/sublimehq/sublime_text/issues/4700上的Git Sublime问题论坛
附注:
Ubuntu 20.04
Sublime 4107
发布于 2021-07-26 23:18:49
我遇到了同样的问题。我认为顺序颠倒了,但现在我认为它甚至是无序的。也许它现在是按上次修改日期排序的?
我也对解决方案感兴趣。
解决方法如下:
- see [https://www.sublimetext.com/docs/side\_by\_side.html](https://www.sublimetext.com/docs/side_by_side.html)- downloaded Sublime Text 3 and put in application folder [https://www.sublimetext.com/3](https://www.sublimetext.com/3)- renamed `Sublime Text.app` to `Sublime Text 3.app`- created `/Users/<Username>/Library/Application Support/Sublime Text 4`- renamed `/Users/<Username>/Library/Application Support/Sublime Text` to : `/Users/thomasglaser/Library/Application Support/Sublime Text 3`启动Sublime Text 3时弹出Error loading syntax file "Packages/JSON/JSON.sublime-syntax": Unable to read Packages/JSON/JSON.sublime-syntax出现错误
- see [https://forum.sublimetext.com/t/error-loading-syntax-file-json-error/25611/6](https://forum.sublimetext.com/t/error-loading-syntax-file-json-error/25611/6)- closed all open workspaces and projects thus tabs or windows- because of that there was the line“syntax”: “Packages/JSON/JSON.sublime-syntax”
在文件中
/Users/<Username>/Library/Application Support/Sublime Text 3/Local/Session.sublime_session
- after restarting sublime Text 3 no error popup came again- see [https://forum.sublimetext.com/t/how-do-i-disable-update-checks/43492/7](https://forum.sublimetext.com/t/how-do-i-disable-update-checks/43492/7)- add line `{"update_check": false,}` to `Preferences.sublime-settings`- maybe this works only for licensed accountshttps://stackoverflow.com/questions/68222129
复制相似问题