当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript ICommonCodeEditor.getConfiguration方法代码示例

本文整理汇总了TypeScript中vs/editor/common/editorCommon.ICommonCodeEditor.getConfiguration方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ICommonCodeEditor.getConfiguration方法的具体用法?TypeScript ICommonCodeEditor.getConfiguration怎么用?TypeScript ICommonCodeEditor.getConfiguration使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在vs/editor/common/editorCommon.ICommonCodeEditor的用法示例。


在下文中一共展示了ICommonCodeEditor.getConfiguration方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: run

	public run(accessor: ServicesAccessor, editor: ICommonCodeEditor): void {
		const configurationEditingService = accessor.get(IConfigurationEditingService);

		const newValue = !editor.getConfiguration().viewInfo.minimap.enabled;

		configurationEditingService.writeConfiguration(ConfigurationTarget.USER, { key: 'editor.minimap.enabled', value: newValue });
	}
开发者ID:armanio123,项目名称:vscode,代码行数:7,代码来源:toggleMinimap.ts

示例2: run

	public run(accessor: ServicesAccessor, editor: ICommonCodeEditor): void {
		const configurationEditingService = accessor.get(IConfigurationEditingService);

		let newRenderControlCharacters = !editor.getConfiguration().viewInfo.renderControlCharacters;

		configurationEditingService.writeConfiguration(ConfigurationTarget.USER, { key: 'editor.renderControlCharacters', value: newRenderControlCharacters });
	}
开发者ID:hungys,项目名称:vscode,代码行数:7,代码来源:toggleRenderControlCharacter.ts

示例3: run

	public run(accessor: ServicesAccessor, editor: ICommonCodeEditor): void {
		const configurationService = accessor.get(IConfigurationService);

		let newRenderControlCharacters = !editor.getConfiguration().viewInfo.renderControlCharacters;

		configurationService.updateValue('editor.renderControlCharacters', newRenderControlCharacters, ConfigurationTarget.USER);
	}
开发者ID:gokulakrishna9,项目名称:vscode,代码行数:7,代码来源:toggleRenderControlCharacter.ts

示例4: run

	public run(accessor: ServicesAccessor, editor: ICommonCodeEditor): void {
		const configurationService = accessor.get(IConfigurationService);

		const newValue = !editor.getConfiguration().viewInfo.minimap.enabled;

		configurationService.updateValue('editor.minimap.enabled', newValue, ConfigurationTarget.USER);
	}
开发者ID:gokulakrishna9,项目名称:vscode,代码行数:7,代码来源:toggleMinimap.ts

示例5: run

	public run(accessor: ServicesAccessor, editor: ICommonCodeEditor): void {
		const configurationEditingService = accessor.get(IConfigurationEditingService);
		const messageService = accessor.get(IMessageService);

		let newRenderControlCharacters = !editor.getConfiguration().viewInfo.renderControlCharacters;

		configurationEditingService.writeConfiguration(ConfigurationTarget.USER, { key: 'editor.renderControlCharacters', value: newRenderControlCharacters }).then(null, error => {
			messageService.show(Severity.Error, error);
		});
	}
开发者ID:diarmaidm,项目名称:vscode,代码行数:10,代码来源:toggleRenderControlCharacter.ts

示例6: run

	public run(accessor: ServicesAccessor, editor: ICommonCodeEditor): void {
		const configurationEditingService = accessor.get(IConfigurationEditingService);

		let renderWhitespace = editor.getConfiguration().viewInfo.renderWhitespace;
		let newRenderWhitespace: string;
		if (renderWhitespace === 'none') {
			newRenderWhitespace = 'all';
		} else {
			newRenderWhitespace = 'none';
		}

		configurationEditingService.writeConfiguration(ConfigurationTarget.USER, { key: 'editor.renderWhitespace', value: newRenderWhitespace });
	}
开发者ID:FabianLauer,项目名称:vscode,代码行数:13,代码来源:toggleRenderWhitespace.ts

示例7: runEditorCommand

	public runEditorCommand(accessor: ServicesAccessor, editor: ICommonCodeEditor, args: any): void {
		const config = editor.getConfiguration();
		const wordSeparators = getMapForWordSeparators(config.wordSeparators);
		const model = editor.getModel();
		const selections = editor.getSelections();

		const commands = selections.map((sel) => {
			const deleteRange = this._delete(wordSeparators, model, sel, this._whitespaceHeuristics, this._wordNavigationType);
			return new ReplaceCommand(deleteRange, '');
		});

		editor.executeCommands(this.id, commands);
	}
开发者ID:hungys,项目名称:vscode,代码行数:13,代码来源:wordOperations.ts

示例8: run

	public run(accessor: ServicesAccessor, editor: ICommonCodeEditor): void {
		let wrappingInfo = editor.getConfiguration().wrappingInfo;
		let newWordWrap: 'on' | 'off';
		if (!wrappingInfo.isViewportWrapping) {
			newWordWrap = 'on';
		} else {
			newWordWrap = 'off';
		}

		editor.updateOptions({
			wordWrap: newWordWrap
		});
	}
开发者ID:yuit,项目名称:vscode,代码行数:13,代码来源:toggleWordWrap.ts

示例9: run

	public run(accessor: ServicesAccessor, editor: ICommonCodeEditor): void {
		const configurationService = accessor.get(IConfigurationService);

		let renderWhitespace = editor.getConfiguration().viewInfo.renderWhitespace;
		let newRenderWhitespace: string;
		if (renderWhitespace === 'none') {
			newRenderWhitespace = 'all';
		} else {
			newRenderWhitespace = 'none';
		}

		configurationService.updateValue('editor.renderWhitespace', newRenderWhitespace, ConfigurationTarget.USER);
	}
开发者ID:gokulakrishna9,项目名称:vscode,代码行数:13,代码来源:toggleRenderWhitespace.ts

示例10: isSupported

	/**
	 * Returns {{true}} in case this action works
	 * with the current mode. To be overwritten
	 * in subclasses.
	 */
	public isSupported():boolean {
		if (!this._supportsReadonly) {
			if (this.editor.getConfiguration().readOnly) {
				return false; // action requires a writeable model
			}

			var model = this.editor.getModel();
			if (model && model.hasEditableRange()) {
				return false; // editable ranges are an indicator for mostly readonly models
			}
		}

		return true;
	}
开发者ID:1833183060,项目名称:vscode,代码行数:19,代码来源:editorAction.ts


注:本文中的vs/editor/common/editorCommon.ICommonCodeEditor.getConfiguration方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。