Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
roflsunriz committed Dec 8, 2024
1 parent b1be93c commit 0e7ab91
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 23 deletions.
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,20 @@ nlFiltersファイル用のシンタックスハイライト拡張機能なの
- ブロック(Match<, Replace<, Append<)のハイライト

## インストール方法
1. `.vsix`ファイルをダウンロード
2. VSCodeの拡張機能メニューから「VSIXからのインストール...」を選択
3. ダウンロードした`.vsix`ファイルを選択

### VSCode Marketplaceから
1. VSCodeの拡張機能メニューを開く
2. "nlfilters"で検索
3. "Install"をクリック

### 手動インストール
1. [Releases](https://github.com/yourusername/nlfilters-syntax-highlighter/releases)から最新の`.vsix`をダウンロード
2. VSCodeで「VSIXからのインストール...」を選択
3. ダウンロードした`.vsix`を選択

## 使い方
- `.nlf`ファイルは自動的にハイライトされます
- `.txt`ファイルは言語モードを「NLFilters」に変更してください

## 問題の報告
バグや機能リクエストは[GitHub Issues](https://github.com/roflsunriz/nlFilters-Syntax-HighLighter/issues)にお願いします!
49 changes: 29 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,41 @@
"displayName": "nlFilters-Syntax-HighLighter",
"description": "Syntax highlighting for nlFilters",
"version": "0.0.1",
"publisher": "your-publisher-name",
"engines": {
"vscode": "^1.93.0"
},
"publisher": "nlfilters",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/nlfilters-syntax-highlighter.git"
"url": "https://github.com/roflsunriz/nlFilters-Syntax-HighLighter.git"
},
"bugs": {
"url": "https://github.com/roflsunriz/nlFilters-Syntax-HighLighter/issues"
},
"homepage": "https://github.com/roflsunriz/nlFilters-Syntax-HighLighter#readme",
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "nlfilters",
"aliases": ["NLFilters", "nlfilters"],
"extensions": [".txt", ".nlf"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "nlfilters",
"scopeName": "source.nlfilters",
"path": "./syntaxes/text.tmLanguage.json",
"embeddedLanguages": {
"source.js": "javascript",
"source.css": "css"
}
}]
"Programming Languages"
],
"keywords": [
"nlfilters",
"syntax",
"highlighting"
],
"contributes": {
"languages": [{
"id": "nlfilters",
"aliases": ["NLFilters", "nlfilters"],
"extensions": [".txt", ".nlf"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "nlfilters",
"scopeName": "source.nlfilters",
"path": "./syntaxes/text.tmLanguage.json",
"embeddedLanguages": {
"source.js": "javascript",
"source.css": "css"
}
}]
}
}

0 comments on commit 0e7ab91

Please sign in to comment.