mirror of
https://github.com/alberti42/obsidian-import-attachments-plus.git
synced 2026-07-22 10:10:24 +00:00
Added support for sublime
This commit is contained in:
parent
a513fef35a
commit
c91623c52f
2 changed files with 32 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -18,3 +18,6 @@ data.json
|
|||
|
||||
# Exclude macOS Finder (System Explorer) View States
|
||||
.DS_Store
|
||||
|
||||
# Sublime
|
||||
obsidian-import-attachments-plus.sublime-workspace
|
||||
29
obsidian-import-attachments-plus.sublime-project
Normal file
29
obsidian-import-attachments-plus.sublime-project
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"folders": [
|
||||
{
|
||||
"path": ".",
|
||||
"folder_exclude_patterns": [".git", "node_modules", "dist"]
|
||||
}
|
||||
],
|
||||
"settings": {
|
||||
"tab_size": 4,
|
||||
"translate_tabs_to_spaces": true,
|
||||
"typescript_tsdk": "./node_modules/typescript/lib"
|
||||
},
|
||||
"build_systems": [
|
||||
{
|
||||
"name": "TypeScript Build",
|
||||
"shell_cmd": "npm run build",
|
||||
"working_dir": "${folder}", // Use ${folder} to point to the project root
|
||||
"file_regex": "^\\s*(.+?\\.ts)\\((\\d+),(\\d+)\\):\\s*(.*)$",
|
||||
"selector": "source.ts"
|
||||
},
|
||||
{
|
||||
"name": "TypeScript Dev",
|
||||
"shell_cmd": "npm run dev",
|
||||
"working_dir": "${folder}", // Use ${folder} to point to the project root
|
||||
"file_regex": "^\\s*(.+?\\.ts):(\\d+):(\\d+):\\s*(.*)$",
|
||||
"selector": "source.ts"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Reference in a new issue