Skip to content

Commit

Permalink
adds contributing draft and mac keybinding variants
Browse files Browse the repository at this point in the history
  • Loading branch information
dzsquared committed Sep 19, 2019
1 parent 48f325b commit 2671b86
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
44 changes: 44 additions & 0 deletions CONTRIBUTING.md
@@ -1,3 +1,47 @@
# Contributing to Query Editor Boost

Thank you for your interest in contributing to Query Editor Boost! Everyone is welcome, regardless of skill level.

## Code of Conduct

Just a reminder that you're expected to adhere to the [Code of Conduct](https://github.com/dzsquared/query-editor-boost/blob/master/CODE_OF_CONDUCT.md).

## Ways to Contribute

On overview of ways you can help out the Query Editor Boost extension for Azure Data Studio:
1. [Submitting Issues (Bugs and Feature Requests)](#submitting-issues)
2. [Tell Your Friends About QEB](#tell-your-friends)
3. [Submitting Fixes](#submitting-fixes)
4. [Submitting New Features](#submitting-new-features)


# Get Started Contributing

## Submitting Issues
1. Check the [currently open issues](https://github.com/dzsquared/query-editor-boost/issues) for a duplicate issue.
2. If you find a duplicate, please let us know you are also interested in that issue by adding a :+1: (or other reaction) and/or a comment.
3. If you're reporting a bug, include as much information as possible. Check for errors in the Dev Tools Console (Help | Toggle Developer Tools).
4. If you're requesting a new feature and would like to take a stab at implementing it, feel free to let us know!

## Test Early Versions
Feel free to "watch" this repository - we will release early versions here before submitting to the Azure Data Studio marketplace.

## Tell Your Friends
Consider sharing this extension with your friends. The more the merrier.

## Submitting Fixes

## Submitting New Features


# An Overview of Contributing Code To This Extension
TODO: add more detail
1. Fork the Query Editor Boost repository
2. Clone your fork to your machine
3. Open the fork in VS Code with the Azure Data Studio Debug extension installed


# Resources for Building Extensions in Azure Data Studio
TODO: add links to example projects and walk-throughs


10 changes: 10 additions & 0 deletions package.json
Expand Up @@ -68,6 +68,16 @@
{
"key": "ctrl+n",
"command": "dsk.newqueryoption"
},
{
"key": "cmd+u",
"command": "dsk.useDatabase",
"when": "queryEditorVisible && isMac"
},
{
"key": "cmd+n",
"command": "dsk.newqueryoption",
"when": "isMac"
}
],
"configuration": [
Expand Down

0 comments on commit 2671b86

Please sign in to comment.