當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript IMode.getId方法代碼示例

本文整理匯總了TypeScript中vs/editor/common/modes.IMode.getId方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript IMode.getId方法的具體用法?TypeScript IMode.getId怎麽用?TypeScript IMode.getId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在vs/editor/common/modes.IMode的用法示例。


在下文中一共展示了IMode.getId方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: handleEvent

		return handleEvent(context, offset, (nestedMode:IMode, context:ILineContext, offset:number) => {
			if (this._modeId === nestedMode.getId()) {

				// Always complete on empty line
				if (context.getTokenCount() === 0) {
					return true;
				}

				var tokenIndex = context.findIndexOfOffset(offset - 1);
				var tokenType = context.getTokenType(tokenIndex);

				for (var i = 0; i < this._autoClosingPairs.length; ++i) {
					if (this._autoClosingPairs[i].open === character) {
						if (this._autoClosingPairs[i].notIn) {
							for (var notInIndex = 0; notInIndex < this._autoClosingPairs[i].notIn.length; ++notInIndex) {
								if (tokenType.indexOf(this._autoClosingPairs[i].notIn[notInIndex]) > -1) {
									return false;
								}
							}
						}
						break;
					}
				}

				return true;
			} else if (nestedMode.richEditSupport && nestedMode.richEditSupport.characterPair) {
				return nestedMode.richEditSupport.characterPair.shouldAutoClosePair(character, context, offset);
			} else {
				return null;
			}
		});
開發者ID:13572293130,項目名稱:vscode,代碼行數:31,代碼來源:characterPair.ts

示例2: handleEvent

		return handleEvent(context, offset, (nestedMode:IMode, context:ILineContext, offset:number) => {
			if (this._modeId === nestedMode.getId()) {
				return true;
			} else if (nestedMode.suggestSupport) {
				return nestedMode.suggestSupport.shouldAutotriggerSuggest(context, offset, triggeredByCharacter);
			} else {
				return false;
			}
		});
開發者ID:KingJiangNet,項目名稱:vscode,代碼行數:9,代碼來源:suggestSupport.ts

示例3: handleEvent

		return handleEvent(context, offset, (nestedMode:IMode, context:ILineContext, offset:number) => {
			if (this._modeId === nestedMode.getId()) {
				return (!Array.isArray(this.contribution.tokens) ||
					this.contribution.tokens.length < 1 ||
					isLineToken(context, offset, this.contribution.tokens));
			} else if (nestedMode.declarationSupport) {
				return nestedMode.declarationSupport.canFindDeclaration(context, offset);
			} else {
				return false;
			}
		});
開發者ID:ErickWendel,項目名稱:vscode,代碼行數:11,代碼來源:declarationSupport.ts

示例4: handleEvent

		return handleEvent(context, offset, (nestedMode:IMode, context:ILineContext, offset:number) => {
			if (this._modeId === nestedMode.getId()) {
				if (!Array.isArray(this.contribution.excludeTokens)) {
					return true;
				}
				if (this.contribution.excludeTokens.length === 1 && this.contribution.excludeTokens[0] === '*') {
					return false;
				}
				return !isLineToken(context, offset-1, this.contribution.excludeTokens);
			} else if (nestedMode.parameterHintsSupport) {
				return nestedMode.parameterHintsSupport.shouldTriggerParameterHints(context, offset);
			} else {
				return false;
			}
		});
開發者ID:ErickWendel,項目名稱:vscode,代碼行數:15,代碼來源:parameterHintsSupport.ts

示例5: _gatherPreflightCommentStrings

	/**
	 * Do an initial pass over the lines and gather info about the line comment string.
	 * Returns null if any of the lines doesn't support a line comment string.
	 */
	public static _gatherPreflightCommentStrings(model:editorCommon.ITokenizedModel, startLineNumber: number, endLineNumber: number): ILinePreflightData[] {
		var lines: ILinePreflightData[] = [],
			config:ICommentsConfiguration,
			commentStr:string,
			seenModes: {[modeId:string]:string;} = Object.create(null),
			i:number,
			lineCount:number,
			lineNumber:number,
			mode: IMode,
			modeId: string;

		for (i = 0, lineCount = endLineNumber - startLineNumber + 1; i < lineCount; i++) {
			lineNumber = startLineNumber + i;
			mode = model.getModeAtPosition(lineNumber, 1);
			modeId = mode.getId();

			// Find the commentStr for this line, if none is found then bail out: we cannot do line comments
			if (seenModes[modeId]) {
				commentStr = seenModes[modeId];
			} else {
				config = (mode.richEditSupport ? mode.richEditSupport.comments : null);
				commentStr = (config ? config.lineCommentToken : null);
				if (!commentStr) {
					// Mode does not support line comments
					return null;
				}

				seenModes[modeId] = commentStr;
			}

			lines.push({
				ignore: false,
				commentStr: commentStr,
				commentStrOffset: 0,
				commentStrLength: commentStr.length
			});
		}

		return lines;
	}
開發者ID:13572293130,項目名稱:vscode,代碼行數:44,代碼來源:lineCommentCommand.ts

示例6: _safeGetWordDefinition

	private static _safeGetWordDefinition(mode:IMode): RegExp {
		return LanguageConfigurationRegistry.getWordDefinition(mode.getId());
	}
開發者ID:Huachao,項目名稱:vscode,代碼行數:3,代碼來源:textModelWithTokensHelpers.ts

示例7: constructor

	constructor(startIndex:number, mode:IMode) {
		this.startIndex = startIndex|0;
		this.mode = mode;
		this.modeId = mode.getId();
	}
開發者ID:1Hgm,項目名稱:vscode,代碼行數:5,代碼來源:modeTransition.ts


注:本文中的vs/editor/common/modes.IMode.getId方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。