-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.conf.example
More file actions
44 lines (41 loc) · 1.47 KB
/
editor.conf.example
File metadata and controls
44 lines (41 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# editor.conf - Editor shortcuts for opening files/folders
# Format: shortcut_name|full_command|description
#
# Fields (pipe-separated):
# 1. Shortcut name (used with: kit <name> <file/folder>)
# 2. Full command to open the editor
# 3. Description
#
# ============================================================================
# HOW TO ADD YOUR EDITOR
# ============================================================================
#
# macOS GUI Apps:
# Use the full path to the .app bundle, or 'open -a AppName'
#
# Example using 'open -a':
# myeditor|open -a "MyEditor"|MyEditor App
#
# Example using full path:
# myeditor|"/Applications/MyEditor.app/Contents/MacOS/MyEditor"|MyEditor
#
# Linux GUI Apps:
# Use the command name (must be in PATH) or full path to binary
#
# Example using command name:
# myeditor|myeditor|MyEditor
#
# Example using full path:
# myeditor|/usr/bin/myeditor|MyEditor
#
# ============================================================================
# EXAMPLES - CUSTOMIZE THESE FOR YOUR EDITORS
# ============================================================================
# macOS: code command must be installed from Command Palette
# Linux: code command must be in PATH
# Add your own editors below using the format: name|command|description
# Example:
# emacs|open -a Emacs|Emacs (macOS)
# idea|/usr/bin/idea|IntelliJ IDEA (Linux)
# Zed editor (macOS - use open -a for .app bundles)
zed|open -a "/Applications/Zed.app"|Zed editor