コードまたはプレーンテキストを記述しているときにsublimecodeintelパッケージでSublimeを使用すると、最大1.2GBのメモリと0%のCPUを使用しています。メモリ使用量の動作を観察しましたが、単語を入力するたびにメモリ使用量が約1MBジャンプするようです。メモリ使用量を設定"codeintel": false,
すると、通常に戻ります。これは私にはメモリリークの問題のようです。これを修正する方法はありますか?
これがsublimecodeintelの設定です(デフォルト設定を使用します)
/*
SublimeCodeIntel default settings
*/
{
/*
Sets the mode in which SublimeCodeIntel runs:
true - Enabled (the default).
false - Disabled.
*/
"codeintel": true,
// An array of language names which are disabled.
"codeintel_disabled_languages":
[
],
/*
Sets the mode in which SublimeCodeIntel's live autocomplete runs:
true - Autocomplete popups as you type (the default).
false - Autocomplete popups only when you request it.
*/
"codeintel_live": true,
// An array of language names to disable.
"codeintel_live_disabled_languages":
[
],
/*
Maps syntax names to languages. This allows variations on a syntax
(for example "Python (Django)") to be used. The key is
the base filename of the .tmLanguage syntax files, and the value
is the syntax it maps to.
*/
"codeintel_syntax_map":
{
"Python Django": "Python"
}
}