From f8c3d99995d439ce85a4d39900565e99f6d972f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Wed, 19 Mar 2025 16:32:30 +0100 Subject: [PATCH] providing_live_templates.md: use snippet for EP with link to IPE --- topics/tutorials/live_templates/providing_live_templates.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/topics/tutorials/live_templates/providing_live_templates.md b/topics/tutorials/live_templates/providing_live_templates.md index f1059770d..bfdfbb7e3 100644 --- a/topics/tutorials/live_templates/providing_live_templates.md +++ b/topics/tutorials/live_templates/providing_live_templates.md @@ -103,7 +103,7 @@ Depending on the version of the IntelliJ Platform, different steps are used to c -Using the `com.intellij.defaultLiveTemplates` and `com.intellij.liveTemplateContext` extension points, register the implementations with the IntelliJ Platform. +Using the and , register the implementations with the IntelliJ Platform. The `file` attribute in specifies `path/filename` under the src/main/resources folder. Specify required `contextId` attribute in instead of [`TemplateContextType`](%gh-ic%/platform/analysis-api/src/com/intellij/codeInsight/template/TemplateContextType.java) constructor (existing declarations will continue working). @@ -121,7 +121,7 @@ Specify required `contextId` attribute in -Using the `com.intellij.defaultLiveTemplates` and `com.intellij.liveTemplateContext` extension points, register the implementations with the IntelliJ Platform. +Using the and , register the implementations with the IntelliJ Platform. The `file` attribute in the specifies `path/filename` under the src/main/resources folder. ```xml @@ -159,7 +159,7 @@ final class MarkdownTemplateProvider implements DefaultLiveTemplatesProvider { } ``` -Using the `com.intellij.defaultLiveTemplatesProvider` and `com.intellij.liveTemplateContext` extension points, register the implementations with the IntelliJ Platform. +Using the and , register the implementations with the IntelliJ Platform. ```xml