Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
code-snippets
/
js
:
editor.ts
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
import { defineMode, getMode, EditorConfiguration, ModeSpec } from 'codemirror' import './php-lint' type ModeSpecOptions = { startOpen: boolean } /** Define a new mode which starts the phpmixed mode in php mode instead of html mode */ defineMode('php-snippet', (config: EditorConfiguration) => getMode(config, <ModeSpec<ModeSpecOptions>> { name: 'application/x-httpd-php', startOpen: true }) )