Skip to content

Commit 57d140d

Browse files
committed
chore: update the repo link [skip ci]
1 parent c6dfb16 commit 57d140d

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@
270270
## 2.16.0
271271
* Add D support
272272
* Add Rust support
273-
* Fix broken ANSI/HTML escaping [#238](https://github.com/rgbkrk/atom-script/issues/238)
273+
* Fix broken ANSI/HTML escaping [#238](https://github.com/atom-ide-community/atom-script/issues/238)
274274
* Turn on colored diagnostics for the C language family
275275

276276
## 2.15.1

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Currently supported grammars are:
111111
| [Zsh] | Yes | Yes | | | Runs if your `SHELL` or `#!` line is `zsh`. |
112112

113113
[-wow]: https://atom.io/packages/language-lua-wow
114-
[#70]: https://github.com/rgbkrk/atom-script/pull/70
114+
[#70]: https://github.com/atom-ide-community/atom-script/pull/70
115115
[`binutils`]: https://www.gnu.org/software/binutils/
116116
[`gfortran`]: https://gcc.gnu.org/wiki/GFortran
117117
[`ghc`]: https://haskell.org/ghc
@@ -315,7 +315,7 @@ atom .
315315

316316
to get it to run with the *current* directory as the default place to run scripts from.
317317

318-
If you *really* wish to open atom from a launcher/icon, see [this issue for a variety of workarounds that have been suggested](https://github.com/rgbkrk/atom-script/issues/61#issuecomment-37337827).
318+
If you *really* wish to open atom from a launcher/icon, see [this issue for a variety of workarounds that have been suggested](https://github.com/atom-ide-community/atom-script/issues/61#issuecomment-37337827).
319319

320320
## Usage
321321

lib/grammars/database.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
message = "SQL requires setting 'Script: Run Options' directly. See https://github.com/rgbkrk/atom-script/tree/master/examples/hello.sql for further information."
1+
message = "SQL requires setting 'Script: Run Options' directly. See https://github.com/atom-ide-community/atom-script/tree/master/examples/hello.sql for further information."
22

33
module.exports =
44

lib/script-view.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export default class ScriptView extends MessagePanelView {
106106
createGitHubIssueLink(argType, lang) {
107107
// const title = `Add ${argType} support for ${lang}`;
108108
// const body = `##### Platform: \`${process.platform}\`\n---\n`;
109-
// let encodedURI = encodeURI(`https://github.com/rgbkrk/atom-script/issues/new?title=${title}&body=${body}`);
109+
// let encodedURI = encodeURI(`https://github.com/atom-ide-community/atom-script/issues/new?title=${title}&body=${body}`);
110110
// // NOTE: Replace "#" after regular encoding so we don't double escape it.
111111
// encodedURI = encodedURI.replace(/#/g, '%23');
112112

@@ -147,7 +147,7 @@ export default class ScriptView extends MessagePanelView {
147147
this.p({ class: 'block' }, `Command not configured for ${lang}!`);
148148
this.p({ class: 'block' }, () => {
149149
this.text('Add an ');
150-
this.a({ href: `https://github.com/rgbkrk/atom-script/issues/new?title=Add%20support%20for%20${lang}` }, 'issue on GitHub');
150+
this.a({ href: `https://github.com/atom-ide-community/atom-script/issues/new?title=Add%20support%20for%20${lang}` }, 'issue on GitHub');
151151
this.text(' or send your own Pull Request.');
152152
});
153153
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"private": false,
66
"description": "Run code in Atom!",
77
"author": "Kyle Kelley <[email protected]>",
8-
"repository": "https://github.com/rgbkrk/atom-script",
8+
"repository": "https://github.com/atom-ide-community/atom-script",
99
"license": "Apache-2.0",
1010
"engines": {
1111
"atom": ">=0.174.0"

0 commit comments

Comments
 (0)