Adds data attributes for editor and pane IDs to the respective HTML element
npm install atom-identify -S
Import the module into your Atom package, then invoke it in your activate method
Examples:
// JavaScript
import identify from 'atom-identify';
export async function activate() {
identify();
};# CoffeeScript
const identify = require "atom-identify"
module.exports =
activate: () ->
identify()This work is licensed under The MIT License