Skip to content

Commit

Permalink
updated snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
pacav69 committed Oct 21, 2019
1 parent 6615341 commit e23dfdb
Show file tree
Hide file tree
Showing 12 changed files with 32 additions and 9 deletions.
23 changes: 22 additions & 1 deletion Main.sublime-menu
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"children":
[
{
"caption": "ç",
"caption": "AcmeAssemblerC64",
"children":
[
{
Expand All @@ -18,6 +18,27 @@
},
"caption": "README"
},
{
"command": "open_file",
"args": {
"file": "${packages}/AcmeAssemblerC64/helpdb/AcmeQuickRef.txt",
},
"caption": "Acme Quick Ref"
},
{
"command": "open_file",
"args": {
"file": "${packages}/AcmeAssemblerC64/helpdb/6502.org Tutorials_ 65C02 Opcodes.html",
},
"caption": "65C02 Opcodes.html"
},
{
"command": "open_file",
"args": {
"file": "${packages}/AcmeAssemblerC64/Examples/petscii-simple-acme.asm",
},
"caption": "simple-acme.asm"
},
{ "caption": "-" },
{
"caption": "Preferences",
Expand Down
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,18 +87,21 @@ There's a way to execute custom scripts before/after the build.

This plugin makes working with Acme Assembler easier by displaying various helpful tooltip information. Tooltips database can be extended to provide more c64 related info. So far rudimentary help files with Acme Assembler directives, illegal opcodes, VIC registers and SID registers are ready. This plugin was added by Roman Dobosz (Gryf/Elysium) and Krzysztof Dabrowski (Brush/Elysium)

# Configuration
## Other documentation
navigate to Preferences/Package Settings/AcmeAssemblerC64 and select the Acme Quick Ref - this is a quick reference text on Acme Assembler.
65C02 Opcodes.html - right click and slect open in browser.

# Configuration

Navigate to Preferences/Package Settings/AcmeTooltips and select the configuration file to edit. Currently you can configure:
Navigate to Preferences/Package Settings/AcmeAssemblerC64 and select the configuration file to edit. Currently you can configure:

"css_file": "AcmeTooltips/css/default.css"
"css_file": "AcmeAssemblerC64/css/default.css"

This is a file that has the css file used to style the tooltips.

"help_directories": ["AcmeTooltips/helpdb"],
"help_directories": ["AcmeAssemblerC64/helpdb"],

This defines the directory where json formatted help files are. Feel free to drop in your own.
This defines the directory where json formatted help files are located. Feel free to drop in your own.

"scopes": ["source.assembly.AcmeAssembler"],

Expand All @@ -110,8 +113,7 @@ For the debugging purposes you can increase the log level to info or debug, open

# Contribute


Making changes
## Making changes

Fork repo, make changes and submit pull requests.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
]]></content>
<tabTrigger>brsc</tabTrigger>
<scope>source.assembly.acmeassembler</scope>
<description>Kick Assembler break file script</description>
<description>acme Assembler break file script</description>
</snippet>

0 comments on commit e23dfdb

Please sign in to comment.