private void textBoxIgnoreFile_TextChanged(object sender, EventArgs e)
        {
            if (_isInitializing)
            {
                return;
            }
            var file = textBoxIgnoreFile.Text.Trim();

            if (!_isLocal)
            {
                _writer.SetIgnoreFilePath(file);
            }
            else
            {
                setLocalIgnoreFileSetting(file);
            }
        }