本文整理汇总了TypeScript中codemirror.findModeByFileName函数的典型用法代码示例。如果您正苦于以下问题:TypeScript findModeByFileName函数的具体用法?TypeScript findModeByFileName怎么用?TypeScript findModeByFileName使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了findModeByFileName函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: getMimeTypeByFilePath
/**
* Returns a mime type for the given file path.
*
* #### Notes
* If a mime type cannot be found returns the defaul mime type `text/plain`, never `null`.
*/
getMimeTypeByFilePath(path: string): string {
if (PathExt.extname(path) === '.ipy') {
return 'text/x-python';
}
const mode = CodeMirror.findModeByFileName(path);
return mode ? mode.mime : IEditorMimeTypeService.defaultMimeType;
}
开发者ID:charnpreetsingh185,项目名称:jupyterlab,代码行数:13,代码来源:mimetype.ts
示例2: loadModeByFileName
function loadModeByFileName(editor: CodeMirror.Editor, filename: string): void {
loadInfo(editor, CodeMirror.findModeByFileName(filename));
}
开发者ID:Carreau,项目名称:jupyterlab,代码行数:3,代码来源:mode.ts
示例3: findByFileName
function findByFileName(name: string): ISpec {
return CodeMirror.findModeByFileName(name);
}
开发者ID:cameronoelsen,项目名称:jupyterlab,代码行数:3,代码来源:mode.ts
示例4: findByFileName
export function findByFileName(name: string): ISpec {
let basename = PathExt.basename(name);
return CodeMirror.findModeByFileName(basename);
}
开发者ID:AlbertHilb,项目名称:jupyterlab,代码行数:4,代码来源:mode.ts
示例5: getMimeTypeByFilePath
/**
* Returns a mime type for the given file path.
*
* #### Notes
* If a mime type cannot be found returns the defaul mime type `text/plain`, never `null`.
*/
getMimeTypeByFilePath(path: string): string {
const mode = CodeMirror.findModeByFileName(path);
return mode ? mode.mime : IEditorMimeTypeService.defaultMimeType;
}
开发者ID:Carreau,项目名称:jupyterlab,代码行数:10,代码来源:mimetype.ts
示例6: loadModeByFileName
function loadModeByFileName(editor: CodeMirror.Editor, filename: string): Promise<string> {
return loadInfo(editor, CodeMirror.findModeByFileName(filename));
}
开发者ID:TypeFox,项目名称:jupyterlab,代码行数:3,代码来源:index.ts
注:本文中的codemirror.findModeByFileName函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论