Skip to content

Commit 227af8a

Browse files
committed
feat(action): introduce VariableActionEventDataHolder for VCS variable actions context management #379
1 parent 1d59130 commit 227af8a

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

exts/devins-lang/src/main/kotlin/cc/unitmesh/devti/language/ShireConstants.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ import com.intellij.openapi.project.Project
44
import com.intellij.openapi.project.guessProjectDir
55
import com.intellij.openapi.vfs.VirtualFile
66

7-
public const val SHIRE_CHAT_BOX_FILE = "shire-chatbox.default.shire"
8-
public const val SHIRE_TEMP_OUTPUT = ".shire-output"
7+
public const val SHIRE_TEMP_OUTPUT = ".autodev-output"
98
public const val LLM_LOGGING_JSONL = "logging.jsonl"
109
public const val LLM_LOGGING = "logging.log"
11-
public const val SHIRE_MKT_HOST = "https://shire.run/packages.json"
1210

1311
object ShireConstants {
1412
fun outputDir(project: Project): VirtualFile? {

exts/devins-lang/src/main/kotlin/cc/unitmesh/devti/language/provider/ActionLocationEditor.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package cc.unitmesh.devti.language.provider
22

33
import cc.unitmesh.devti.language.ast.config.DevInActionLocation
4+
import cc.unitmesh.devti.language.provider.action.VariableActionEventDataHolder
45
import com.intellij.ide.DataManager
56
import com.intellij.openapi.actionSystem.CommonDataKeys
67
import com.intellij.openapi.editor.Editor

exts/devins-lang/src/main/kotlin/cc/unitmesh/devti/language/provider/VariableActionEventDataHolder.kt renamed to exts/devins-lang/src/main/kotlin/cc/unitmesh/devti/language/provider/action/VariableActionEventDataHolder.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package cc.unitmesh.devti.language.provider
1+
package cc.unitmesh.devti.language.provider.action
22

33
import com.intellij.openapi.actionSystem.DataContext
44
import com.intellij.openapi.util.Key

0 commit comments

Comments
 (0)